B
Q. Which of the following C++ code will give error on compilation?
================code 1================= #include <iostream> using namespace std; int main(int argc, char const *argv[]) { cout<<"Hello World"; return 0; } ======================================== ================code 2================= #include <iostream> int main(int argc, char const *argv[]) { std::cout<<"Hello World"; return 0; } ========================================
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. Object oriented programming employs_________ programming approach.
Q. The goto destination for the label is identified by __
Q. Which of the STL containers store the elements contiguously (in adjacent memory locations)?
Q. The constants in C++ are also known as?
Q. When a virtual function is redefined by the derived class, it is called___________.
Q. What will happen when we use void in argument passing?
Q. Which of the following is an example of low level language?
Q. Which of the following is the correct way to define a function with a return type in C++?
Discusssion
Login to discuss.