PHP

11/22/2023

C++ sizeof()

 #include <iostream>

using namespace std;

 

int main() {

   cout << "Size of char : " << sizeof(char) << endl;

   cout << "Size of int : " << sizeof(int) << endl;

   cout << "Size of short int : " << sizeof(short int) << endl;

   cout << "Size of long int : " << sizeof(long int) << endl;

   cout << "Size of float : " << sizeof(float) << endl;

   cout << "Size of double : " << sizeof(double) << endl;

   cout << "Size of wchar_t : " << sizeof(wchar_t) << endl;

   

   return 0;

}

-----------------------------------------------------------------------

Size of char : 1

Size of int : 4

Size of short int : 2

Size of long int : 4

Size of float : 4

Size of double : 8

Size of wchar_t : 4

No comments:

Post a Comment

Featured Post

이성(합리적 판단)과 감성(감정적 판단)을 나타내는 형용사

이성(합리적 판단)과 감성(감정적 판단)을 나타내는 형용사는 영어 문장에서 의견, 판단, 주장 등을 표현할 때 자주 사용됩니다. 특히 `that + 주어 + (should)` 구조와 함께 쓰여서 의무나 필요성, 기대를 나타낼 수 있습니다. ### 1....

Popular Posts