본문 바로가기

공부/c언어

scanf함수에서 \n을 사용하면?

반응형

http://msdn.microsoft.com/ko-kr/library/vstudio/kwwtf9ch(v=vs.100).aspx

 

White-space characters: blank (' '); tab ('\t'); or newline ('\n'). A white-space character causes scanf to read, but not store, all consecutive white-space characters in the input up to the next non–white-space character.

 

scanf("\n");

띄어쓰기 들여쓰기 한칸넘기기를 함수 안에 사용하면 입력으로 띄어쓰기 들여쓰기 한칸넘기기를 읽어 들이기는 하지만 저장은 하지 않음

반응형