#include<stdio.h>
#include<conio.h>
int main()
{
int no;
scanf("%d", &no);
printf("%d %d", no,no++);
getch();return 0;
}
the output of this program is '4 3'.. my questino is WHY? this program should first print the number which is entered.. and then when it prints the next number it should add 1 to the number and then print it.. shouldnt it?
its not doig that..WHY?