#include<stdio.h> void main() { int a,b=3; a = b++; printf("Value of a : %d",a); a = b++; printf("Value of b : %d",a); }
Comment