Click here to Skip to main content
15,891,828 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
Simple Easy Program but not able to do that bcoz of this problem the coding is here:(using version is :NeuTron Dos C++,0.77)

C++
#include<iostream.h>
using namespace std;
//main() is where program execution begins.
{
 cout<<"hello";//prints hello
 return 0;
}
Posted

1 solution

Try replace
C++
//main() is where program execution begins.

with
C++
main() // is where program execution begins.

it may help.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900