What is the syntax error in the following function declaration
void fun1(int parmf ,float parm2);
{ .......
......
...}
Answers
Answered by
0
Terminator is not allowed in function declaration. So u should remove the semicolon after argument of the function and fill up the appropriate or necessary statement inside the function body
Similar questions