Search found 3 matches
- Fri Nov 07, 2008 2:42 am
- Forum: General/Off-Topic
- Topic: VERY Important game game industry information
- Replies: 11
- Views: 904
Re: VERY Important game game industry information
It would take a lot of school to get an MBA on top of a CS degree... I have no doubts that it pays off, though.
- Fri Nov 07, 2008 12:51 am
- Forum: Programming Discussion
- Topic: OMFG n00b!
- Replies: 13
- Views: 1973
Re: OMFG n00b!
I actually recommend starting with C++. It doesn't hold your hand, and the concepts you're learning apply to almost every programming language. These were the first tutorials I went through for C++ on the internet, but before that I read Teach Yourself C in 21 Days. I wouldn't recommend that book, b...
- Fri Nov 07, 2008 12:33 am
- Forum: Programming Discussion
- Topic: How to check the value of a char?
- Replies: 12
- Views: 2221
Re: How the check the value of a char?
Why not just use std::string if you're using C++? Here's some code: #include <iostream> #include <string> using namespace std; int main() { string input; cout << "What operation would you like to perform? "; cin >> input; if(input == "add") { cout << "You chose the 'add' ope...