/* * increment1.c */ #include int main(void) { int ii=31; printf("Value of ii is:\t%d\n", ii); ii++; printf("Value of ii is:\t%d\n", ii); ii++; printf("Value of ii is:\t%d\n", ii); ii++; printf("Value of ii is:\t%d\n", ii); ii++; return 0; }