γβ¨οΈα΄sγSTUDY/C
[C][header][stdio.h] scanf
루λ°ππ¦πππ£
2023. 1. 29. 06:00
728x90
λ°μν
scanf
ν¨μ μν
#include <stdio.h> // C++ μ κ²½μ°<cstdio>
int scanf(const char* format, ...);
곡백μ ν¬ν¨νμ¬ λ¬Έμμ΄λ‘ μ λ ₯λ°λ λ°©λ²
#include <stdio.h>
int main(void){
char arr[100];
scanf("%[^\n]", arr); // "%[^\n]"μ μν°κ° λμ¬λκΉμ§ λ¬Έμμ΄λ‘ λ°λλ€λ λ§μ΄λ€( 곡백λ ν¬ν¨ )
return 0;
}
"%[^\n]"μ μν°κ° λμ¬λκΉμ§ λ¬Έμμ΄λ‘ λ°λλ€λ λ»μ΄λ€. (곡백μ ν¬ν¨νλ€ )
728x90
λ°μν