Run the "hello, world" program on your system. Experiment with leaving out parts of the program, to see what error messages you get.
Example:
#include <stdio.h>
int main()
{
printf("Hello, World!\n");
return 0;
}
Run the "hello, world" program on your system. Experiment with leaving out parts of the program, to see what error messages you get.
Example:
#include <stdio.h>
int main()
{
printf("Hello, World!\n");
return 0;
}