C examples for Language Basics:printf
What is the output? printf
#include <stdio.h> int main()/* ww w. ja v a 2 s .c o m*/ { int x = 0; printf("\nThe value of x is %d\n", x); x++; printf("\nThe value of x is %d\n", x); }