Result of output
#include<stdio.h>
int main()
{
int a,b,c;
printf("Enter the numbers\n");
scanf("%d%d",&a,&b);
c=a+b;
printf("%d\n",++a,b++);
printf("%d",--c);
return 0;
}

Posted on by