/* chpater 3 Question no 7 kpk text book computer science grade 12 (2nd year) write a c++ program to find maximum value out of three integers using conditional operator. */ #include #include main() { clrscr(); int a,b,c,max; cout<<"\nEnter the 1st number "; cin>>a; cout<<"\nEnter the second number "; cin>>b; cout<<"\nEnter the third number "; cin>>c; max = (a>b)?a:b; max = (max>c)?max:c; cout<<"\n\nMaximum value is "<