Chinese, asked by dainvincible1, 1 year ago


What is the output of the program?

#include
int main()
{
extern int fun(float);
int a;
a = fun(3.14);
printf("%d\n", a);
return 0;
}
int fun(int aa)
{
return (int)++aa;
}

Answers

Answered by nikitasingh79
0
output
2 errors
1. type mismatch in redeclaration of fun
2. type mismatch in parameter of aa
Similar questions