Q. What is the output of the following C++ code?
Code:#include <iostream>
int main(int argc, char const *argv[])
{
cout << "Welcom to StackHowTo";
return 0;
}
β
Correct Answer: (C)
Compilation error
#include <iostream>
int main(int argc, char const *argv[])
{
cout << "Welcom to StackHowTo";
return 0;
}
You must be Logged in to update hint/solution