Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


To All C++ Coders!
Goto page Previous  1, 2
 
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming
View previous topic :: View next topic  
Author Message
atom0s
Moderator
Reputation: 205

Joined: 25 Jan 2006
Posts: 8587
Location: 127.0.0.1

PostPosted: Mon Oct 22, 2007 6:29 pm    Post subject: Reply with quote

blankrider wrote:
which is why i said msdn

MSDN IS YOUR BEST FRIEND NEXT TO GOOGLE BUT GOOGLE OFTEN HAS MSDN AS NUMBER ONE SEARCH. USE MSDN!


I second that Very Happy

_________________
- Retired.
Back to top
View user's profile Send private message Visit poster's website
MegaForum
Grandmaster Cheater
Reputation: 0

Joined: 20 Aug 2007
Posts: 558

PostPosted: Mon Oct 22, 2007 7:10 pm    Post subject: Reply with quote

blankrider wrote:
when i read source code i see how things fit together and usually ill remember that, maybe its just me


but see, as you said you remember whatever the command or line of code and just memorize it. In the future, if u need to use that, will you know what it means or do you just remeber, "o i put this here or that there". Your not understanding the meaning of what the codes doing, just knowing that this word goes there. I'd like to get away from just memorizing and try grasp and understand, even the basics. Smile
btw: C++ vocab? importent or not.
is there like a database of command words with meanings.
im more of a vocab> definition person Razz
thanks for all the help so far!
Back to top
View user's profile Send private message
atom0s
Moderator
Reputation: 205

Joined: 25 Jan 2006
Posts: 8587
Location: 127.0.0.1

PostPosted: Mon Oct 22, 2007 7:30 pm    Post subject: Reply with quote

For API use the MSDN, it explains everything for each API.

As for other key words.. you wont find a great resource as each compiler has it's own macros and such for code. The most you can find is common keywords, which you can just google for help with those.

_________________
- Retired.
Back to top
View user's profile Send private message Visit poster's website
HomerSexual
Grandmaster Cheater Supreme
Reputation: 5

Joined: 03 Feb 2007
Posts: 1657

PostPosted: Mon Oct 22, 2007 7:39 pm    Post subject: Reply with quote

Mega me and you think differently.

When i read something i can see how it works, if i don't know an api i will look it up. So im not just memorizing positions. I see how everything works in regards to windows and connect it together. You misunderstood me

_________________
Back to top
View user's profile Send private message
nox
Expert Cheater
Reputation: 0

Joined: 09 Apr 2007
Posts: 227
Location: brooklyn

PostPosted: Mon Oct 22, 2007 8:19 pm    Post subject: Reply with quote

Negima wrote:
Practicle C++ programming

bad book.

C++ primer plus is a great option
Back to top
View user's profile Send private message
oib111
I post too much
Reputation: 0

Joined: 02 Apr 2007
Posts: 2947
Location: you wanna know why?

PostPosted: Mon Oct 22, 2007 9:32 pm    Post subject: Reply with quote

I suggest msdn and google. Although real life lessons are always good. Because you have somebody right there who knows this and can answer all your questions.
_________________


8D wrote:

cigs dont make people high, which weed does, which causes them to do bad stuff. like killing
Back to top
View user's profile Send private message AIM Address Yahoo Messenger MSN Messenger
MegaForum
Grandmaster Cheater
Reputation: 0

Joined: 20 Aug 2007
Posts: 558

PostPosted: Tue Oct 23, 2007 12:31 pm    Post subject: Reply with quote

Thank-you for all your help everyone.
One last question: My inability to not understand some of this, could it be because this is my first language i am learning? also any tips you did/do to learn a language did u do any REAL studying? o.o
Back to top
View user's profile Send private message
Hackerdevelopment
Advanced Cheater
Reputation: 0

Joined: 11 Oct 2007
Posts: 55

PostPosted: Tue Oct 23, 2007 1:07 pm    Post subject: Reply with quote

My suggestion is keep reviewing. thats wat i had to do do understand. Good luck man!
Back to top
View user's profile Send private message
UnLmtD
Grandmaster Cheater
Reputation: 0

Joined: 13 Mar 2007
Posts: 894
Location: Canada

PostPosted: Tue Oct 23, 2007 1:22 pm    Post subject: Reply with quote

MegaForum wrote:
Thank-you for all your help everyone.
One last question: My inability to not understand some of this, could it be because this is my first language i am learning? also any tips you did/do to learn a language did u do any REAL studying? o.o


I learned C by my own, it was a hobby. Just search/read code and you'll get it. But don't stay on something too long, always progress and learn.

_________________
Back to top
View user's profile Send private message
atom0s
Moderator
Reputation: 205

Joined: 25 Jan 2006
Posts: 8587
Location: 127.0.0.1

PostPosted: Tue Oct 23, 2007 5:05 pm    Post subject: Reply with quote

MegaForum wrote:
Thank-you for all your help everyone.
One last question: My inability to not understand some of this, could it be because this is my first language i am learning? also any tips you did/do to learn a language did u do any REAL studying? o.o


Work from the bottom up, don't dive into the language in the middle somewhere with a project you know you wont understand and will be constantly asking questions or googling for. Do something basic to begin with. Most people I've seen start with a calculator. Try that. It will teach you some syntax of using math functions. Which is good to learn early as you will always be using math.

Make sure to study what you are reading if you are reading tutorials and such, don't just skimp and copy/paste code cause you will never learn doing that. Don't rush yourself either, find a good pace that you feel comfortable learning at and stick with it.

_________________
- Retired.
Back to top
View user's profile Send private message Visit poster's website
MegaForum
Grandmaster Cheater
Reputation: 0

Joined: 20 Aug 2007
Posts: 558

PostPosted: Tue Oct 23, 2007 6:27 pm    Post subject: Reply with quote

Wiccaan wrote:
MegaForum wrote:
Thank-you for all your help everyone.
One last question: My inability to not understand some of this, could it be because this is my first language i am learning? also any tips you did/do to learn a language did u do any REAL studying? o.o


Work from the bottom up, don't dive into the language in the middle somewhere with a project you know you wont understand and will be constantly asking questions or googling for. Do something basic to begin with. Most people I've seen start with a calculator. Try that. It will teach you some syntax of using math functions. Which is good to learn early as you will always be using math.

Make sure to study what you are reading if you are reading tutorials and such, don't just skimp and copy/paste code cause you will never learn doing that. Don't rush yourself either, find a good pace that you feel comfortable learning at and stick with it.


thanks ^^
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming All times are GMT - 6 Hours
Goto page Previous  1, 2
Page 2 of 2

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites