A common and extremely useful feature of most online dictionaries is <em />interoperable browser.
Answer:
#include<iostream>
using namespace std;
int main (){
int n1, n2;
cout<<"Enter 1st number";
cin>>n1;
cout<<"Enter 2nd number";
cin>>n2;
if(n1<n2){
cout<<"The 1st number is the smallest"<<endl<<" is= "<<n1;
}
else{
cout<<"The 2nd number is the smallest"<<endl<<" is= "<<n2;
}
}
return 0;
Answer:
This is true
Explanation:
Comments don't effect your program at all.
The computer doesn't even read the line with the comment, what you right before the comment tells the computer to skip this line.
So you can place them anywhere