#include <stdio.h>
#include <conio.h>
typedef arrChoice[10] /*is this a global variable?*/
int main() {};
getch();
return 0;
}
its not done yet, but this is what i meant.
|
|
typedef is not a global variable, it's simply an alias for another type. I usually use them for function pointers when I'm passing those around because writing them out every time is annoying.
I also use them to define a structure, union, or enumeration as a type
|
||||
|
|
|
This might help you. In the code you posted here, there is a error. There are no statements in side main function. getch and return statements should be inside main function. I feel your code should be like this.
please note that the purpose of typedef is to assign alternative names to existing types(int,float,double,etc.). The following statements are similar.
When you try to refer arrChoice, then you get an error message
|
|||
|
|