#include <stdio.h>
int main ()
{ /*Most Important Part of the application*/
int Number; /*My Varibiles*/
/*Output Text*/
printf ("Hello Welcome to my First Application\n Please Input a Number Between 0 & 10\n");
/*input Text*/
scanf("%d",Number);
/*Tells them Their Number*/
printf("Your Number is" "%d",Number);
printf("OK You selected %d Correctly",Number);
return 0;
}
it runs ok but when inputting a number it goes to next line as it should but displays bus Error
thanks.