你能告诉这里有什么问题吗?
#include <stdio.h>
#include <stdlib.h>
int test (void)
{
int i;
printf("Enter a number: ");
scanf("%d",&i);
return i;
}
int main (void)
{
test();
return 0;
}
这只是一个简单的示例,但由于某种原因,除非我摆脱了 scanf,否则 main 不会运行。