scanf
예제코드
#include <stdio.h>
int main(void)
{
int input;
printf("값을 입력하세요 : ");
scanf_s("%d", &input);
printf("input = %d\n", input);
return 0;
}
예제코드 2 (여러개 입력)
#include <stdio.h>
int main(void)
{
int one, two, three;
printf("3개의 정수를 입력하세요 (공백으로 구분) : ");
scanf_s("%d %d %d", &one, &two, &three);
printf("one = %d, two = %d, three = %d\n", one, two, three);
return 0;
}
예제코드 3 (문자와 문자열)
#include <stdio.h>
int main(void)
{
char c = 'A';
printf("%c\n", c);
char str[256];
scanf_s("%s", str, sizeof(str));
printf("%s\n", str);
return 0;
}