Diff Between Pre-decrement and Post-decrement

#include<stdio.h>
void main()
{
int a;
printf("enter value a");
scanf("%d",&a);
printf("%d,%d,%d",a,a--,--a);
}

No comments:

Related Posts with Thumbnails