Реферат: Основы алгоритмического языка С++
short int aShort;
int anInt;
long aLong;
char aChar;
float aReal;
cout << "Таблица 1. Размеры памяти для переменных" << endl
<< endl;
cout << " Тип данных Используемая " << endl;
cout << " память (в байтах)" << endl;
cout << "------------------ -----------" << endl;
cout << " short int " << sizeof(aShort) << endl;
cout << " integer " << sizeof(anInt) << endl;
cout << " long integer " << sizeof(aLong) << endl;
cout << " character " << sizeof(aChar) << endl;
cout << " float " << sizeof(aReal) << endl;
cout << endl << endl << endl;
cout << "Таблица 2. Размеры памяти для типов данных" << endl
<< endl;
cout << " Тип данных Используемая" << endl;
cout << " память (в байтах)" << endl;
cout << "------------------ -----------" << endl;
cout << " short int " << sizeof(short int) << endl;
cout << " integer " << sizeof(int) << endl;
cout << " long integer " << sizeof(long) << endl;
cout << " character " << sizeof(char) << endl;
cout << " float " << sizeof(float) << endl;
cout << endl << endl << endl;
return 0;
}