Tuesday, January 19, 2016

Exercise 1.1 - testing hello, world

Exercise 1.1 - testing hello, world


Question

Run the hello, world program on your system. Experiment with leaving out parts of the program, to see what error messages you get.
/* First Program in KandR, the hello,world */

#include<stdio.h>
int main(void)
{
    printf("hello,world\n");
}

No comments:

Post a Comment