4
unsigned short int의 형식 지정자는 무엇입니까?
다음 프로그램이 있습니다 #include <stdio.h> int main(void) { unsigned short int length = 10; printf("Enter length : "); scanf("%u", &length); printf("value is %u \n", length); return 0; } 사용하여 컴파일 gcc filename.c하면 다음 경고가 발생합니다 ( scanf()줄에서). warning: format ‘%u’ expects argument of type ‘unsigned int *’, but argument 2 …