Please help

R

reepakmajhi.com

I am new to C++ Programming. So my question is Can we write a function
to use it in program?
 
C

chujiacheng

I am new to C++ Programming. So my question is Can we write a function
to use it in program?

This question is too general to give you a more specific answer. Can
you just give a specified example?
 
M

mlyon

This question is too general to give you a more specific answer. Can
you just give a specified example?

You could give them the generalized form of a function, especially
having it conform to standard good variable naming conventions, and
proper indenting. like GNU's "Hello World!"; that is, over-the-top-
example that definitely drives the point home. i'd do it myself but my
C++ elements of style book is 10 mi away on my desk!
 
S

Salt_Peter

You could give them the generalized form of a function, especially
having it conform to standard good variable naming conventions, and
proper indenting. like GNU's "Hello World!"; that is, over-the-top-
example that definitely drives the point home. i'd do it myself but my
C++ elements of style book is 10 mi away on my desk!

Then why didn't YOU provide a function example?
You need a style book to provide one? I'm puzzled.

To the OP:
both writing functions and types (struct, classes) is daily duty in C+
+.
You need a good book, which one will depend on what programming xp you
have so far.

If you really need an example:

#include <iostream>

void foo()
{
std::cout << "i'm a foo()\n";
}

int main()
{
foo();
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Can't solve problems! please Help 0
Please help 7
Troubles with Fullpage / please help 0
Please help me!!! 3
Help please 8
Hi everyone ....need some help please 2
Need help again please 19
Code help please 4

Members online

No members online now.

Forum statistics

Threads
474,169
Messages
2,570,919
Members
47,459
Latest member
Vida00R129

Latest Threads

Top