I'm getting a "storage class specified for parameter..." error with the following code:
int func1(int n); int func2(int n) typedef unsigned long type1;
What am I doing wrong?
You have missed a semicolon off the declaration of the "func2" function. The code should be:
int func1(int n); int func2(int n); typedef unsigned long type1;
Comments
0 comments
Please sign in to leave a comment.