|
|
(getting error message to few argument) return 0; int stuff() { scanf stuff printf stuff loops stuff } void help(int a, int b, in c) { equation stuff goes here adding multiplying and stuff here printf("*"); } |
(getting error message to few argument) |
void help(int a, int b, int c)
expects three integer parameters.help(result);
|
|
a = 3 b = 7 c = 12 |