wow
This commit is contained in:
parent
14647b72e2
commit
7f76e58e1e
10 changed files with 150 additions and 5 deletions
13
02/02_60p.c
Normal file
13
02/02_60p.c
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#include <stdio.h>
|
||||
|
||||
int main() {
|
||||
char some[20];
|
||||
printf("문자열 입력 : ");
|
||||
scanf("%s", some);
|
||||
printf("[출력결과]\n");
|
||||
for (int i = 0; i < 4; i++) {
|
||||
printf("%c", some[i]);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue