About Me

My photo
gandhinagar, gujarat, India
hi.. friends i'am student of kv crpf gandhinagar..and i would like to spread my view and thinking on computer..this blog is for not only those who wants to get knowledge.

Friday 6 May 2011

swapping in C


#include<conio.h>
#include<stdio.h>
void main()
{
clrscr();
              int a,b,c;
               a=1;b=2;
               c=a;
               a=b;
               b=c;
                                    printf("%d\n%d",a,b);
getch();
}

0 comments:

Post a Comment