Advertisement

/ * Program for increment operator. */

 Program for increment operator

#include<stdio.h>
#include<conio.h>

void main()
{
   int a;
   a=10;
   a++;    // Increase the value of a by 1 
   printf("Value of A=%d",a);
   getch();
}
Redmi Note 10T

Post a Comment

0 Comments