Computer >> 컴퓨터 >  >> 프로그램 작성 >> C++

C++ 정수 상수란 무엇입니까?


정수 상수는 분수 부분이나 지수가 없는 상수 데이터 요소입니다. 항상 숫자로 시작합니다. 10진수, 8진수 또는 16진수 형식으로 정수 상수를 지정할 수 있습니다. 서명되거나 서명되지 않은 유형과 long 또는 short 유형을 지정할 수 있습니다.

C++에서 다음 코드를 사용하여 정수 상수를 생성할 수 있습니다 -

#include<iostream>
using namespace std;
int main() {
   const int x = 15; // 15 is decimal integer constant while x is a constant int.
   int y = 015; // 15 is octal integer constant while y is an int.
   return 0;
}


https://msdn.microsoft.com/en-us/library/00a1awxf.aspx에서 정수 상수를 지정하는 전체 문법을 찾을 수 있습니다.