Add Initial commit

This commit is contained in:
Lev
2021-05-18 12:19:31 -05:00
parent 617fb2d36f
commit c78129c4ee
2 changed files with 19 additions and 0 deletions

Binary file not shown.

View File

@ -0,0 +1,19 @@
#include <iostream>
int main()
{
char c = 0;
std::cout << "char: " << sizeof(char) << std::endl;
signed int si = 0;
std::cout << "signed int: " << sizeof(si) << std::endl;
float f = 0.0f;
std::cout << "float: " << sizeof(f) << std::endl;
double d = 0.0;
std::cout << "double: " << sizeof(d) << std::endl;
long double ld = 0.0;
std::cout << "long double: " << sizeof(ld) << std::endl;
}