본문 바로가기

C/Study

[C] __int64

반응형
#include <stdio.h>

int main(int argc, char *argv[], char **env)
{
	__int64 temp;
	fputs("숫자를 입력해 주세요 : ", stdout);

	scanf("%I64d", &a);
	// %I64d 에서 64 앞에 소문자 l(엘)이 아니라 대문자 I(아이)

	printf("입력한 숫자는 : \n%I64d\n", temp);

	return 0;
}

 

약 9220000000000000000 (922경)의 숫자까지 인식

반응형