C语言变的源程序 怎么在没有VC的电脑里运行!
C语言变的源程序 怎么在没有VC的电脑里运行!写的详细点!!比如这个程序怎么在没有VC的情况下通过EXE运行~~
#include <stdio.h>
#include <stdlib.h>
int main()
{
int chose=0;
do{
printf(" ***-**-**-**-**-**-**-**-**-**-**-***\n");
printf(" * welcome!What can I do for you? *\n");
printf(" * *\n");
printf(" * 1.Buy a thing. *\n");
printf(" * 2.Look for. *\n");
printf(" * 3.Settings(only for administrator)*\n");
printf(" * 4.over inputing! *\n");
printf(" ***-**-**-**-**-**-**-**-**-**-**-***\n");
printf("Please chose :");
scanf("%d",&chose);
switch(chose)
{
case 1:printf("111\n");break;
case 2:printf("222\n");break;
case 3:printf("333\n");break;
case 4:break;
default:printf("ERROR,press any key to continue\n");
fflush(stdin);//或者getchar();都可以!
}
if(chose==4) break;
}while(1);
}