Examveda

What happens if the following program is executed in C and C++?
#include <stdio.h> 
void func(void)
{
	printf("Hello");
}
void main() 
{ 
	func();
	func(2);
}

A. Error in both C and C++

B. Outputs Hello twice in both C and C++

C. Error in C and successful execution in C++

D. Error in C++ and successful execution in C

Answer: Option A


Join The Discussion

Related Questions on Introduction to C plus plus