为什么
#include<stdio.h>
int main(void)
{
printf("\aStartled by the sudden sound,Sally shouted,\"By the Great Pumpkin,what was that!\"");
return 0;
}
在c-free上可以成功运行但是
#include<stdio.h>
int main(void)
{
printf("\aStartled by the sudden sound,Sally shouted,
\"By the Great Pumpkin,what was that!\"");
return 0;
}
就没办法。两个代码的差别就是我把输出的代码分成两行。
#include<stdio.h>
int main(void)
{
printf("\aStartled by the sudden sound,Sally shouted,\"By the Great Pumpkin,what was that!\"");
return 0;
}
在c-free上可以成功运行但是
#include<stdio.h>
int main(void)
{
printf("\aStartled by the sudden sound,Sally shouted,
\"By the Great Pumpkin,what was that!\"");
return 0;
}
就没办法。两个代码的差别就是我把输出的代码分成两行。