اكتب برنامج بلغة ++C يقوم بكتابة حجم نوع البيانات Int,Float,Double and Char
- برمجة
- برمجة سي بلس بلس
- 2021-08-29
- msayedkamel2003
الأجوبة
/* C++ Program to Find Size of Int Float Double and Char data types */
#include <iostream>
using namespace std;
int main()
{
cout << "Size of char: " << sizeof(char) << " byte" << endl;
cout << "\nSize of int: " << sizeof(int) << " bytes" << endl;
cout << "\nSize of float: " << sizeof(float) << " bytes" << endl;
cout << "\nSize of double: " << sizeof(double) << " bytes" << endl;
return 0;
}
القوائم الدراسية التي ينتمي لها السؤال