Programming Code Center(PCC)
[CPP]

(PCC)::[Cpp-Program-to-Find-Size-of-int,-float,-double-and-char-in-Your-System]::[cpp]

File Name : Size_of_Variable.cpp

#include <iostream>
using namespace std;

int main() 
{    
    cout << "Size of char: " << sizeof(char) << " byte" << endl;
    cout << "Size of int: " << sizeof(int) << " bytes" << endl;
    cout << "Size of float: " << sizeof(float) << " bytes" << endl;
    cout << "Size of double: " << sizeof(double) << " bytes" << endl;

    return 0;
}

Output :

Size_of_Variable.jpg