5 printf("Hello world\n");
8 for (Count
= -5; Count
<= 5; Count
++)
9 printf("Count = %d\n", Count
);
11 printf("String 'hello', 'there' is '%s', '%s'\n", "hello", "there");
12 printf("Character 'A' is '%c'\n", 65);
13 printf("Character 'a' is '%c'\n", 'a');
18 // vim: set expandtab ts=4 sw=3 sts=3 tw=80 :