Feed Headline Animator

write a program to exchange the values of two variables using assignment and print the exchanged values on the screen( Arithmetic assignment)

main( )
{
int a,b,c;
clrscr();
a=200;
b=100;
c=a;
a=b;
b=c;
printf(“value of a =%d/n”,a);
printf(“ value of b=%d/n”,b);
}

Posted by: Wasim Javed

No comments:

Post a Comment