I got error like this is bloodshed dev c++
13 C:\Documents and Settings\Admini strator\Desktop \heros.cpp expected unqualified-id before '}' token
13 C:\Documents and Settings\Admini strator\Desktop \heros.cpp expected unqualified-id before '}' token
Code:
#include <iostream>
#include <string>
using namespace std;
int main()
{
string title= "the great";
typedef int revolution;
revolution heros;
cout<<"Enter your name and you will be hero";
while(cin>>heros)
{
cout<<"You are" + heros+title.
return 0;
}
return 0;
}
Comment