//Use of increment (++) operator in C program.
#include<stdio.h>
void main()
{
int marks=59;
marks++; //will add
1 to 59
printf("%d",
marks);
}
|
Output of the
Program:
60
This blog assists in mastering C and C++ programming skills from basics to advanced levels.
No comments:
Post a Comment