if loop error

Started by
1 comment, last by stevelevesque 22 years, 8 months ago
When i put an IF loop in one of my programs it always comes up with an error. The error says "error C2181: illegal else without matching if." I dont understand this because i do have an if statement. char c; cin>>c; { if(c==''1'') return 0; else cout<<"Hello"<<endl; }
~When The Only Thing You Have Is A Hammer, Everything Looks Like A Nail.www.instinctz.net
Advertisement
Try this ...
  char c;cin >> c;if(c == ''1'')    return 0;else    cout << "Hello";  


~~~~~~~~~~
Martee
ReactOS - an Open-source operating system compatible with Windows NT apps and drivers
Also an IF is NOT a loop. Its a comparison statement. Its called an if statement. A loop is something like for, do while, and while.

-SirKnight

This topic is closed to new replies.

Advertisement