Exercise 1-1
🔩

Exercise 1-1

 
Run the “hello world” program on your system. Experiment with leaving out parts of the program, to see what error message you get.
#include <stdio.h> main() { printf("hello, "); printf("world"); printf("\n"); }