I want some help in this code I am just a biggener | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

I want some help in this code I am just a biggener

#include <iostream> using namespace std int main { cout << "\nSize of Fundamental Types\n" << " Type Number of Bytes\n" << "----------------------------------" << endl; cout << " char: " << sizeof(char) << endl; cout << " short: " << sizeof(short)<< endl; cout << " int: " << sizeof(int) << endl; cout << " long: " << sizeof(long) << endl; cout << " float: " << sizeof(float)<< endl; cout << " double: " << sizeof(double)<<endl; cout << " long double: " << sizeof(long double)<< endl; return 0; }

22nd Aug 2021, 9:45 PM
mariarosalita catapan
mariarosalita catapan - avatar
1 Answer
23rd Aug 2021, 5:40 AM
SoloProg
SoloProg - avatar