+1 vote
in Class 11 by kratos

Write a simple C++program.

1 Answer

+6 votes
by kratos
 
Best answer

include

main()

{

cout<< “Hello World”; // prints Hello World

return 0;

}

...