Search found 7 matches

by VsPokemon
Mon May 27, 2013 12:20 pm
Forum: Programming Discussion
Topic: Computer Engineering vs Computer Science
Replies: 6
Views: 5179

Computer Engineering vs Computer Science

I'm in high school right now and have really gotten to love coding. It really interests me and I want to major in its field in college. However, I don't understand much about the difference between Computer Engineering and Computer Science, could someone please explain?
by VsPokemon
Thu Dec 06, 2012 10:56 pm
Forum: Game Development
Topic: Minimum Knowledge: Game Programming
Replies: 7
Views: 3448

Re: Minimum Knowledge: Game Programming

I'll make sure I look into it. Also, thanks for doing such a great job on these forums. There's always someone to help and it's designed to be very user friendly.
by VsPokemon
Thu Dec 06, 2012 4:53 pm
Forum: Game Development
Topic: Minimum Knowledge: Game Programming
Replies: 7
Views: 3448

Re: Minimum Knowledge: Game Programming

Thanks for the reply. I've done a little bit with SDL already, and the Beej site looks like a good one.
by VsPokemon
Wed Dec 05, 2012 11:40 pm
Forum: Game Development
Topic: Minimum Knowledge: Game Programming
Replies: 7
Views: 3448

Minimum Knowledge: Game Programming

Thanks ahead of time to anyone who replies. C++ is my first programming language, and I've been programming on and off for about the past year. I know some basics from online tutorials, and am finally getting a beginner's book to learn from (Sam's teach yourself c++, 7th edition). From anyone who's ...
by VsPokemon
Mon Oct 29, 2012 11:21 pm
Forum: Programming Discussion
Topic: Derived Variable Update
Replies: 4
Views: 2206

Re: Derived Variable Update

Thanks to every one who responded, I think i've got it now. And sorry about the duplicate posts, this was my first time posting and I wasn't sure if the post worked the first time.
by VsPokemon
Thu Oct 25, 2012 6:19 pm
Forum: Programming Discussion
Topic: Friend Class Issues
Replies: 1
Views: 1072

Friend Class Issues

Thanks to everyone reading this, and please help! I'm trying to get it so that the value of an inherited variable in a friend class will change, but it only seems to stay the same. Below I have posted the code. I expected to get the output '1''2', but instead it's like I never added 1 to x and inste...
by VsPokemon
Thu Oct 25, 2012 6:14 pm
Forum: Programming Discussion
Topic: Derived Variable Update
Replies: 4
Views: 2206

Derived Variable Update

I've been having some trouble trying to get the value of a variable to update in a friend class. I have posted an example bellow: #include <iostream> using namespace std; class Me { private: int X; public: Me::Me(); void add(); friend class You; }; class You { public: Me m; void show(); }; Me::Me(){...