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 


I wanna Learn C++ or c#

 
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming
View previous topic :: View next topic  
Author Message
G0DFATHER
How do I cheat?
Reputation: 0

Joined: 14 May 2008
Posts: 0
Location: C:/Nexon/Maplestory

PostPosted: Thu Sep 04, 2008 2:53 pm    Post subject: I wanna Learn C++ or c# Reply with quote

I need a good and easy to learn tut for an of these languages Im new to the whole concept so please Give me the link for one for Idiots lol Wink
_________________

GROOT FTW!!!
Back to top
View user's profile Send private message
arigity
Advanced Cheater
Reputation: 0

Joined: 03 Jul 2008
Posts: 65
Location: middle of nowhere.

PostPosted: Thu Sep 04, 2008 3:43 pm    Post subject: Reply with quote

http://forum.cheatengine.org/viewtopic.php?t=107208

p.s. look next time k?
Back to top
View user's profile Send private message
HomerSexual
Grandmaster Cheater Supreme
Reputation: 5

Joined: 03 Feb 2007
Posts: 1657

PostPosted: Thu Sep 04, 2008 4:28 pm    Post subject: Reply with quote

You shouldn't go into it thinking it will be easy. It will only be easy if you are willing to put time and thought into everything.
_________________
Back to top
View user's profile Send private message
G0DFATHER
How do I cheat?
Reputation: 0

Joined: 14 May 2008
Posts: 0
Location: C:/Nexon/Maplestory

PostPosted: Thu Sep 04, 2008 6:40 pm    Post subject: Reply with quote

cuz i wan one kid friendly and thanks arigity
_________________

GROOT FTW!!!
Back to top
View user's profile Send private message
yoyonerd
Grandmaster Cheater
Reputation: 0

Joined: 26 Apr 2008
Posts: 699
Location: -->formerly yoyonerd<--

PostPosted: Thu Sep 04, 2008 10:44 pm    Post subject: Reply with quote

didn't you just read what he said?

don't go into it thinking its that simple, if you want to learn it, you shouldn't care what its gonna be like
Back to top
View user's profile Send private message AIM Address
NINTENDO
Grandmaster Cheater Supreme
Reputation: 0

Joined: 02 Nov 2007
Posts: 1371

PostPosted: Fri Sep 05, 2008 4:53 am    Post subject: Re: I wanna Learn C++ or c# Reply with quote

G0DFATHER wrote:
I need a good and easy to learn tut for an of these languages Im new to the whole concept so please Give me the link for one for Idiots lol Wink

learn both. I'm gonna learn c++ when I master c#.

_________________
Intel over amd yes.
Back to top
View user's profile Send private message Send e-mail AIM Address Yahoo Messenger MSN Messenger
G0DFATHER
How do I cheat?
Reputation: 0

Joined: 14 May 2008
Posts: 0
Location: C:/Nexon/Maplestory

PostPosted: Fri Sep 05, 2008 7:25 pm    Post subject: Reply with quote

Ok thanks Ill try it
_________________

GROOT FTW!!!
Back to top
View user's profile Send private message
BanMe
Master Cheater
Reputation: 0

Joined: 29 Nov 2005
Posts: 375
Location: Farmington NH, USA

PostPosted: Fri Sep 05, 2008 8:26 pm    Post subject: Reply with quote

wtf C# is lame ass ****...

start with ASM... Asm rule all if you can code in asm most everything else is easy ;]

failing this start C++ because there are alot of samples in the SDK, that one good thing about C/C++ is that there are vast amounts of samples on the internet and one can learn much by simple following code flow and design.. :p

also if one doesnt know what some API does msdn is a great resource as well.

greets BanMe
Back to top
View user's profile Send private message MSN Messenger
dough boy
Advanced Cheater
Reputation: 0

Joined: 17 Oct 2007
Posts: 50

PostPosted: Sat Sep 06, 2008 9:11 am    Post subject: Reply with quote

i took a comp devel class and were learning c# right now then later java fr a bit but whats ASM look like? hows the codin different??
_________________
we all learn so GIVE US A BRAKe and help :3
Back to top
View user's profile Send private message MSN Messenger
NINTENDO
Grandmaster Cheater Supreme
Reputation: 0

Joined: 02 Nov 2007
Posts: 1371

PostPosted: Sat Sep 06, 2008 2:27 pm    Post subject: Reply with quote

BanMe wrote:
wtf C# is lame ass ****...

start with ASM... Asm rule all if you can code in asm most everything else is easy ;]

failing this start C++ because there are alot of samples in the SDK, that one good thing about C/C++ is that there are vast amounts of samples on the internet and one can learn much by simple following code flow and design.. :p

also if one doesnt know what some API does msdn is a great resource as well.

greets BanMe

It's good to start with something but asambling? Isn't that hard if you have none expereience of programming whatsoever.

_________________
Intel over amd yes.
Back to top
View user's profile Send private message Send e-mail AIM Address Yahoo Messenger MSN Messenger
BanMe
Master Cheater
Reputation: 0

Joined: 29 Nov 2005
Posts: 375
Location: Farmington NH, USA

PostPosted: Sat Sep 06, 2008 2:48 pm    Post subject: Reply with quote

asm coding is much more dirty then any high level language... cause your not restricted to using some pre-conceived wrapper functions and you can code things that run far more efficiently... start with nasm or masm..

C was coded in asm lol, C++ was coded in C + asm... everythng else fails in my opinion.. Wink

compared to C# or java, asm own them cause there no Runtime(extra crap.. as far as im concerned) there is no handy dandy way of doing things, you do all the coding yourself. if there is a error then the error falls on you, and not some half baked addon provided with using such newer languages...

also ASM coding provides a in depth look at how all languages work underneath the hood, because one way or the other all code has to be translated into ByteCode asm in order for it to be processed by the CPU ...
Back to top
View user's profile Send private message MSN Messenger
jackyyll
Expert Cheater
Reputation: 0

Joined: 28 Jan 2008
Posts: 143
Location: here

PostPosted: Sat Sep 06, 2008 3:46 pm    Post subject: Reply with quote

BanMe wrote:
asm coding is much more dirty then any high level language... cause your not restricted to using some pre-conceived wrapper functions and you can code things that run far more efficiently... start with nasm or masm..

C was coded in asm lol, C++ was coded in C + asm... everythng else fails in my opinion.. Wink

compared to C# or java, asm own them cause there no Runtime(extra crap.. as far as im concerned) there is no handy dandy way of doing things, you do all the coding yourself. if there is a error then the error falls on you, and not some half baked addon provided with using such newer languages...

also ASM coding provides a in depth look at how all languages work underneath the hood, because one way or the other all code has to be translated into ByteCode asm in order for it to be processed by the CPU ...


C is coded in C actually :O
Back to top
View user's profile Send private message AIM Address MSN Messenger
Wintermoot
Expert Cheater
Reputation: 0

Joined: 08 Nov 2007
Posts: 198

PostPosted: Sun Sep 07, 2008 12:53 am    Post subject: Reply with quote

jackyyll wrote:
BanMe wrote:
asm coding is much more dirty then any high level language... cause your not restricted to using some pre-conceived wrapper functions and you can code things that run far more efficiently... start with nasm or masm..

C was coded in asm lol, C++ was coded in C + asm... everythng else fails in my opinion.. Wink

compared to C# or java, asm own them cause there no Runtime(extra crap.. as far as im concerned) there is no handy dandy way of doing things, you do all the coding yourself. if there is a error then the error falls on you, and not some half baked addon provided with using such newer languages...

also ASM coding provides a in depth look at how all languages work underneath the hood, because one way or the other all code has to be translated into ByteCode asm in order for it to be processed by the CPU ...


C is coded in C actually :O

How can a programming language be coded in itself?
Back to top
View user's profile Send private message
Bojangles
Newbie cheater
Reputation: 0

Joined: 03 Sep 2008
Posts: 14

PostPosted: Sun Sep 07, 2008 10:03 pm    Post subject: Reply with quote

*golfclap* Language vs Language posts are entertaining.
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
Page 1 of 1

 
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