#include<stdio.h>
#include<stdlib.h>
main()
{
char input[45];
while(1)
{
puts("\nInput yhe desired system command, blank to exit");
gets(input);
if(input[0]=='\0')
exit(0);
system(input);
}
return 0;
}
소스입니다. compile은 문제없는데 return 0;<===요기서
link error가 뜨는 이유를 알려주세용...^^
|