write a c program to swap the value of two variable
- Yatendra Awana
- Jul 21, 2021
- 1 min read
#include<stdio.h>
void main()
{
int a=8,b=7,temp;
printf("a=%d, b=%d\n",a,b);
temp=a;
a=b;
b=temp;
printf("a=%d, b=%d\n",a,b);
getch();
}
google407ec42f1ae5ff0e.html
Comentários