Python while loop error and correction Get link Facebook X Pinterest Email Other Apps July 15, 2022 wrong program correct program wrong program BY Shifan Read more
Conditional ternary operator Get link Facebook X Pinterest Email Other Apps January 27, 2022 #include<iostream> using namespace std; int main() { int a,b; string c,d,largest; c = "hi"; d = " bye"; cin>>a>>b; largest = (a>b)?c:d; cout<<largest; return 0; } Read more