I am a new young programer and i have recently started learning c++ I made a simpile script but something is wrong.
Code:
#include <iostream>
using namespace std;
int main()
{
int x;
unsigned short int y;
unsigned long int z;
signed short int a;
signed long int b;
y = 10;
z = 100000;
a = -12;
b = -5666666;
cout << y << endl;
cout << z << endl;
cout << a << endl;
cout << b << endl;
cin.get();
return 0;
}
Comment