اكتب برنامج بلغة ++C يقوم بكتابة حجم نوع البيانات Int,Float,Double and Char

  • برمجة
  • برمجة سي بلس بلس

اكتب برنامج بلغة ++C يقوم بكتابة حجم نوع البيانات Int,Float,Double and Char

المخرجات المتوقعة:

/*  C++ Program to Find Size of Int Float Double and Char data types  */

Size of char: 1 byte

Size of int: 4 bytes

Size of float: 4 bytes

Size of double: 8 bytes

Process returned 0

الأجوبة

/*  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;
}
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...