Examveda

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;
}
========================================

A. Both code 1 and code 2

B. Code 1 only

C. Code 2 only

D. Neither code 1 nor code 2

Answer: Option D


Join The Discussion

Related Questions on Introduction to C plus plus