June 28, 2007
How can I compile #include <stdio.h> program I linux?
hi I'm trying to compile below program while compiled that program I got error "include expects "FILENAME" or <filename>" I'm using linux 2.4.2-6 (i386).
- source:
- take out the &
- return 0;
- {
- #include <stdio.h>
- int main(void)
- Looks like the website you pulled this code from had a typo. Here's what the code should look like:
#include <stdio.h>
int main(void)
{
printf("hello");
return 0;
} - printf("hello");

































