When i try to compile the following program, it says
"warning: implicit declaration of function 'printf'"
Heres the source code
"warning: implicit declaration of function 'printf'"
Heres the source code
Code:
#include <stdio.h>
int main(void)
{
prinf("Hello World");
return 0;
}
Comment