answersLogoWhite

0

++a (plus plus a) is pre-incrementing operator to a
a=10;
printf("%d",++a); /* it will print 11 as ++a increment first a by 1 then prints it */

printf("%d",a++); /*it will printf 10 as it is post _ increment operator , it prints the value a first then increment it by 1 */

User Avatar

Wiki User

15y ago

What else can I help you with?