Back To C++ Flow of Control Index
//program to input three numbers and find smallest of three numbers using if-else statement #include
#include
void main() { int a,b,c,min; clrscr(); cout<<"\nenter value for a"; cin>>a; cout<<"enter value for b"; cin>>b; cout<<"enter value for c"; cin>>c; min=a; if(b