#include <stdio.h> #include <string.h> int main() { char buffer[256] = { 0 }; printf("锄禾日当午,学C真TM!\n"); fgets(buffer,10, stdin); printf("%s", buffer); system("pause"); return 0; }