#include #include using namespace std; int main() { int num =10; // 4 byte can take any integer value -2^(31) to 2^(31) - 1 num = -20; long bignum; // 8 bytes can take any integer value -2^(63) to 2^(63) - 1 bignum = 31333383131931093; float salary; //4 bytes salary = -13.32323113; double big_salary; //8 bytes big_salary = 32321323.2424242424242424; cout << big_salary << endl; cout << setprecision(2)<