Find the output of C programs
Program 1
gd.c
#include <stdio.h>
int main()
{
    int a = 5;
    printf("%d\n", ++a + ++a + ++a);
    int b = 5;
    printf("%d %d %d\n", ++b, ++b, ++b);
    return 0;
}
godarda@gd:~$ gcc gd.c
godarda@gd:~$ ./a.out 22 8 8 8 godarda@gd:~$
Comments and Reactions
What Next?
C Strings