Feb 27, 2014 at 7:41pm
Hello!
Please, if we have a struct stack in a stack fle,
like:
struct stack{
char array[int t];
int u;
}
and prototype functions in the same file, written as:
int func1(stack s, char c)
what means s in struct s and what means c in char c?
Many thanks!!!
Feb 27, 2014 at 8:34pm
I wonder, are you here to learn or to troll?
Your profile says you joined on "Oct 18, 2012 at 2:10pm".
And yet you never indent your code, and ask first-week C++ beginner questions...
To answer your question, s and c are the names of the two parameters of function func1().
Or speaking more generally, they are identifiers.
Feb 28, 2014 at 11:53am
@Catfish666:I believe your right.