完结第三章
This commit is contained in:
11
Chapter3/IO/getchar_putchar.c
Normal file
11
Chapter3/IO/getchar_putchar.c
Normal file
@@ -0,0 +1,11 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
int ch;
|
||||
ch = getchar();
|
||||
putchar(ch);
|
||||
|
||||
exit(0);
|
||||
}
|
||||
Reference in New Issue
Block a user