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 


What language did you start programming at?
Goto page 1, 2, 3  Next
 
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming
View previous topic :: View next topic  
Author Message
407
Master Cheater
Reputation: 0

Joined: 25 Oct 2007
Posts: 357

PostPosted: Fri Dec 25, 2009 3:56 am    Post subject: What language did you start programming at? Reply with quote

So if anyone remembers me, I went ahead and attempted to learn C++ a few weeks back (Not including many failed tries before), and failed miserably, again.

I'm wondering: What coding language did you start first, before attempting to learn C++?




Sorry, I do realize this is not really a Programming question, so if it's in the wrong section, could a mod please move it to General Discussion?
Back to top
View user's profile Send private message
hcavolsdsadgadsg
I'm a spammer
Reputation: 26

Joined: 11 Jun 2007
Posts: 5801

PostPosted: Fri Dec 25, 2009 3:59 am    Post subject: Reply with quote

C

most concepts carry over fine, while this doesn't work quite as well the other way around.


but you really shouldn't have much trouble starting out in C++, where are you learning from? a good book will probably help a lot.
Back to top
View user's profile Send private message
407
Master Cheater
Reputation: 0

Joined: 25 Oct 2007
Posts: 357

PostPosted: Fri Dec 25, 2009 4:03 am    Post subject: Reply with quote

slovach wrote:
C

most concepts carry over fine, while this doesn't work quite as well the other way around.


but you really shouldn't have much trouble starting out in C++, where are you learning from? a good book will probably help a lot.

I'm learning from a guy on YouTube :/
This guy.
Back to top
View user's profile Send private message
hcavolsdsadgadsg
I'm a spammer
Reputation: 26

Joined: 11 Jun 2007
Posts: 5801

PostPosted: Fri Dec 25, 2009 4:10 am    Post subject: Reply with quote

http://www.cplusplus.com/doc/tutorial/

is probably your best online bet.


C++ Primer Plus is a good book as well


get Visual Studio, it's free and is the best IDE you can get.
Back to top
View user's profile Send private message
407
Master Cheater
Reputation: 0

Joined: 25 Oct 2007
Posts: 357

PostPosted: Fri Dec 25, 2009 4:14 am    Post subject: Reply with quote

slovach wrote:
http://www.cplusplus.com/doc/tutorial/

is probably your best online bet.


C++ Primer Plus is a good book as well


get Visual Studio, it's free and is the best IDE you can get.

Yeah, I have Microsoft Visual C++ 2008 Express edition, is that the same?
Also, thanks! I will look through that website.
Back to top
View user's profile Send private message
hcavolsdsadgadsg
I'm a spammer
Reputation: 26

Joined: 11 Jun 2007
Posts: 5801

PostPosted: Fri Dec 25, 2009 4:17 am    Post subject: Reply with quote

^Diamonds wrote:
Yeah, I have Microsoft Visual C++ 2008 Express edition, is that the same?.


yes
Back to top
View user's profile Send private message
iPromise
Grandmaster Cheater
Reputation: -1

Joined: 27 Jun 2009
Posts: 529
Location: Canada

PostPosted: Fri Dec 25, 2009 7:37 am    Post subject: Reply with quote

Started off with Visual Basic, then I moved on to some C# then C++.
Back to top
View user's profile Send private message MSN Messenger
kot1990
Expert Cheater
Reputation: 1

Joined: 06 Sep 2009
Posts: 131
Location: Greece

PostPosted: Fri Dec 25, 2009 9:04 am    Post subject: Reply with quote

For me, I first tried C++ but with no luck, was hard for me. Then I found autoit. Autoit has it's own syntax and compiler to easily create windows based automated scripts. It's very easy to learn as its help file is very helpful explaining every function with an example and hiding data types and all this confusing stuff that appears in any of the "big" programming languages. It will help you understand the main concepts of programming like loops, conditions etc. and a little GUI programming, but don't stay on that because this scripting language is limited and automated, so its hiding stuff from you, and if you want to be a good programmer you should go to more advanced stuff like C,C++. In C you can start creating small console applications to do the work, undestand very well the syntax, data types and how they look in memory.
Back to top
View user's profile Send private message
Chaosis13
Master Cheater
Reputation: 0

Joined: 14 Aug 2007
Posts: 372

PostPosted: Fri Dec 25, 2009 9:33 am    Post subject: Reply with quote

Don't learn Basic, I tried, but wanted to shoot myself. C was easier than Basic!

I learned Ruby first, but I think what got me prepared for C/C++ was learning action script (Flash). I just downloaded the two free trials and programmed for 8 hours a day for 2 months. It was the most fun I ever had, and at the end I had made a shitty RPG and an arcade game. So, I suggest you find something that is fun, then you will want to program.
Back to top
View user's profile Send private message
igoticecream
Grandmaster Cheater Supreme
Reputation: 0

Joined: 23 Apr 2006
Posts: 1807
Location: 0x00400000

PostPosted: Fri Dec 25, 2009 2:57 pm    Post subject: Reply with quote

I did pascal first
_________________
+~
Back to top
View user's profile Send private message
zengrz
Cheater
Reputation: 0

Joined: 19 Mar 2009
Posts: 33
Location: ca

PostPosted: Fri Dec 25, 2009 3:54 pm    Post subject: Reply with quote

If you want to be serious, go to youtube and search for CS106a (Java for absolute beginner), and CS106b (c++, pre-requisite is cs106a). I started out around march/april this year n now i m all gd. it takes arnd 3-4 month to finish each course if slow.

Try them if you want to be serious, good luck!
Back to top
View user's profile Send private message
407
Master Cheater
Reputation: 0

Joined: 25 Oct 2007
Posts: 357

PostPosted: Fri Dec 25, 2009 4:29 pm    Post subject: Reply with quote

kot1990 wrote:
For me, I first tried C++ but with no luck, was hard for me. Then I found autoit. Autoit has it's own syntax and compiler to easily create windows based automated scripts. It's very easy to learn as its help file is very helpful explaining every function with an example and hiding data types and all this confusing stuff that appears in any of the "big" programming languages. It will help you understand the main concepts of programming like loops, conditions etc. and a little GUI programming, but don't stay on that because this scripting language is limited and automated, so its hiding stuff from you, and if you want to be a good programmer you should go to more advanced stuff like C,C++. In C you can start creating small console applications to do the work, undestand very well the syntax, data types and how they look in memory.
YES!
I have used AutoIT before, that's how I understand how functions work in C++..

But the thing is, I don't want to stick with macro stuff..
Back to top
View user's profile Send private message
Flyte
Peanuts!!!!
Reputation: 6

Joined: 19 Apr 2006
Posts: 1887
Location: Canada

PostPosted: Fri Dec 25, 2009 4:38 pm    Post subject: Reply with quote

C is your best bet.
Back to top
View user's profile Send private message
407
Master Cheater
Reputation: 0

Joined: 25 Oct 2007
Posts: 357

PostPosted: Tue Dec 29, 2009 5:19 am    Post subject: Reply with quote

So I've decided to take up Autoit, because I'm really, really interested on learning this kind of stuff..

Do you guys think it's easier to learn through tutorials, or the help file?

Also, if I were to learn from the help file.. does anyone have any programs you think I could attempt to make?

Every time I open scite I just sit there with the help file, with no ideas on what to make..
Back to top
View user's profile Send private message
laiker
Newbie cheater
Reputation: 0

Joined: 03 Oct 2008
Posts: 15

PostPosted: Tue Dec 29, 2009 3:42 pm    Post subject: Reply with quote

I did Amxx Firstly
Then Got to Vb
And Trying to Do Something with C

_________________
My Grammar Sux, and my grandma knows it...
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 1, 2, 3  Next
Page 1 of 3

 
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