Dev-C++ Programming Help

Started by
2 comments, last by WerewolfGDS 18 years, 11 months ago
Hey guys i've been trying for the past 3 days to get the "Game Over" Program to work on Dev-C++ but i've been getting the same Error all the time it keeps saying C:\Dev-Cpp\Untitled1.cpp[Warning] In function `int main()': And Line 8 C:\Dev-Cpp\Untitled1.cpp`end1' undeclared in namespace `std' If anyone could tell how to fix this problem it'd help out a whole lot thanks!
Advertisement
After your #includes....
make sure you are using the std namespace with:

using namespace std;
And make sure that it says endl, and not end1
----------------------------------^--------------^
--------------------------------letter-----number one

Edit:
Hmmm, seems like the forum don't like spaces.
o.o;;; a letter... i thought it was a number... i feel so smart right now.
"I can't see the tree amongst the forest" as they say. From now on ill look before i jump, thanks.

This topic is closed to new replies.

Advertisement