Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you may not be able to execute some actions.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
#include <stdio.h> int main() { int a; printf("정수를입력하세요:"); scanf("%d", &a); printf("입력받은 정수 : %d", a); return 0; }
결과: 정수를입력하세요:입력받은 정수 : 32766
이처럼 쓰레기 값이 나옵니다.. 아예 scnaf가 작동을 안 합니다. 대체 왜 이러는 건가요?? 코드엔 문제가 있을 리가 없는데
제 컨테이너에서는 해당 코드를 입력했을 때 정상 출력됩니다.