Q: 8
What will happen when you attempt to compile and run the code below, assuming that you enter
the following sequence: 1.1 2.2 3.3?
#include
#include
using namespace std;
int main ()
{
int a,b,c;
cin>>a>>b>>c;
cout<<a<<b<<c<<endl;
return 0;
}
Program will output:
Options
Discussion
No comments yet. Be the first to comment.
Be respectful. No spam.