Learn about different Data types of C++:
uint
e.g. int a=10;
uFloat
e.g. float b=10.98;
uDouble
e.g. double c=1000.987;
uChar
e.g. char d='A';
uBool
e.g. bool
check=true;
//Find the Maximum No between Three Nos' int i=10,o=20,k=30; if(i>o &&i>k) { cout<<"1st is g\n";...