My code is this atm:
#include <stdlib.h>
#include <stdio.h>
int main(int argc, char *argv[]){
int a,b,c;
int swap;
printf("Enter 3 Numbers (# # #):");
scanf("%d %d %d", &a,&b,&c);
//does all its computing, to see which one is biggest.
return EXIT_SUCCESS;
}
The result when i run it in eclipse is that, I have to put in 3 numbers first, THEN it says "Enter 3 Numbers (# # #):"
(So it stays blank at start of program)
I remember I had this problem a long time ago but I have switched back to eclipse now and somehow this happens. :/
Thanks in adance.