Reference Variables & Typecasting in C++
#include <iostream> using namespace std ; int c = 45 ; //Global Variable int main () { // ****************Built in data types****************** // int a,b,c; // cout<<"Enter the value of a : "<<endl; // cin>>a; // cout<<"Enter the value of b : "<<endl; // cin>>b; // c = a+b; // cout<<"The sum is : "<<c<<endl; // cout<<"The global c is : "<<::c; //Global Variable // *****************float,double and long double literals***************** // float d=34.4; // long double e = 34.4; //By default, "34.4" will be considered as double, not float //But "34.4f" will be considered as float //"34.4l" will be considered as long double // cout<<"The size of 34.4 is "<<size...