Saturday 10 December 2011

Write a program to use of main pre increment operators in c

#include
#include
main()
{
int x,y;
clrscr();
x=5;
y=++x + ++x;
printf("\n The Value of X is:-%d",x);
printf("\n The Value of Y is:-%d",y);
getch();
}



OUTPUT
The Value of X is:7
The Value of Y is:14

No comments:

Post a Comment