If else problems with solution
// date --> 09-10-2021 // if esle exercise // // difference between signed and unsigned int ; // unsigned int num = -1; // int x = num; // cout<<num<<", "<<x; /*//Q- Take valuse of length and breadth of a rectangle from user and check if it is square or not . int length, breadth ; cout<<"Enter the lenght of the rectangle : "<<endl; cin>>length; cout<<"Enter the breadth of the rectangle : "<<endl; cin>>breadth; if (length==breadth){ cout<<"It is a square"<<endl; }else{ ...