O.P. C question.
Well i have this:
#include <stdio.h>
#include <conio.h>
void main(void)
{
float a,b;
clrscr();
scanf("%f%f", &a,&b);
printf("%f \n %f", a,b);
}
anyway what i need to do, is make the a and b switch. What i mean is for the rest of the program A will be what i entered for B and B will be what i entered FOR A.
Now i dont want you to tell me how to do this, just tell me if its possible and a tip maybe o.O
|