Name: Anonymous 2007-08-17 19:28 ID:mFw/616K
I believe I copied this code verbatim from my C++ book. I get "undeclared identifier" errors on lines 6 and 8. I will never learn the basic if this book has shitty code.
Please tell me whether I am idiot, Visual C++ sucks, or I need to throw this book in the garbage:
#include <iostream>
int main()
{
int x = 5;
int y = 7;
std::cout << endl;
std::cout << x + y << " " << x * y;
std::cout << end;
return 0;
}
Please tell me whether I am idiot, Visual C++ sucks, or I need to throw this book in the garbage:
#include <iostream>
int main()
{
int x = 5;
int y = 7;
std::cout << endl;
std::cout << x + y << " " << x * y;
std::cout << end;
return 0;
}