Programming in C....a way to learn about 'C' language secrets. Here you can get programming ideas and knowledges in C language. C is like a Sea, Be a best fisher on it.
Wednesday, March 15, 2006
Swapping Two Numbers
Program: void main( ) { int a=10, b=20;
a^=b^=a^=b; clrscr( ); printf( "Value of a %d, Value of b %d", a, b ); getch(); }
No comments:
Post a Comment