天天看點

c加入getchar();避免一閃而過

#include <stdio.h>
#include <stdlib.h>
int main()
{
printf(“hello world!\n”);
getchar();
return 0;
}
           
c