Make the following QBasic program from the below question:
1. To accept values of two numbers and interchange their values.
Please answer fast....!!
Answers
Answered by
0
Answer:
#include<studio.h>
#include<conio.h>
int main ()
{
int num1,num2,temp;
scanf ("%d%d",&num1,&num2);
temp=num1;
temp=num2;
num2= temp;
printf ("%d%d",num1,num2);
return 0;
}
Similar questions