Back To C Basics Index
//program to demonstrate increment(++) operator , i++ is same as i=i+1 #include
#include
void main() { int a; a=10; clrscr(); printf("value of a is %d",a); a++; printf("now value of a after applying increment operator is %d",a); getch(); }