C Program to show use of short hand operators in C

C Program to show use of short hand operators in C | Short Hand operators in C | assignment Short Hand Operators


#include
#include
main()
{
int x,y=10;
clrscr();
x=y++;
printf("\nx=%d\ty%d",x,y);
x=++y;
printf("\nx=%dy=%d",x,y);
getch();
}




No comments:

Post a Comment