• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 04:27
CET 09:27
KST 17:27
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
ByuL: The Forgotten Master of ZvT30Behind the Blue - Team Liquid History Book19Clem wins HomeStory Cup 289HomeStory Cup 28 - Info & Preview13Rongyi Cup S3 - Preview & Info8
Community News
Weekly Cups (March 9-15): herO, Clem, ByuN win02026 KungFu Cup Announcement6BGE Stara Zagora 2026 cancelled12Blizzard Classic Cup - Tastosis announced as captains17Weekly Cups (March 2-8): ByuN overcomes PvT block5
StarCraft 2
General
Evitrol : Faut-il l’acheter ? Avis complet et plai Potential Updates Coming to the SC2 CN Server Weekly Cups (March 2-8): ByuN overcomes PvT block Blizzard Classic Cup - Tastosis announced as captains Weekly Cups (March 9-15): herO, Clem, ByuN win
Tourneys
2026 KungFu Cup Announcement [GSL CK] #2: Team Classic vs. Team Solar [GSL CK] #1: Team Maru vs. Team herO RSL Season 4 announced for March-April PIG STY FESTIVAL 7.0! (19 Feb - 1 Mar)
Strategy
Custom Maps
Publishing has been re-enabled! [Feb 24th 2026] Map Editor closed ?
External Content
The PondCast: SC2 News & Results Mutation # 517 Distant Threat Mutation # 516 Specter of Death Mutation # 515 Together Forever
Brood War
General
Gypsy to Korea ASL21 General Discussion BGH Auto Balance -> http://bghmmr.eu/ BSL 22 Map Contest — Submissions OPEN to March 10 Are you ready for ASL 21? Hype VIDEO
Tourneys
ASL Season 21 Qualifiers March 7-8 [Megathread] Daily Proleagues [BSL22] Open Qualifiers & Ladder Tours IPSL Spring 2026 is here!
Strategy
Simple Questions, Simple Answers Soma's 9 hatch build from ASL Game 2 Fighting Spirit mining rates Zealot bombing is no longer popular?
Other Games
General Games
Nintendo Switch Thread Stormgate/Frost Giant Megathread Dawn of War IV Path of Exile PC Games Sales Thread
Dota 2
Official 'what is Dota anymore' discussion The Story of Wings Gaming
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
Five o'clock TL Mafia Mafia Game Mode Feedback/Ideas Vanilla Mini Mafia TL Mafia Community Thread
Community
General
US Politics Mega-thread Things Aren’t Peaceful in Palestine Mexico's Drug War Canadian Politics Mega-thread Russo-Ukrainian War Thread
Fan Clubs
The IdrA Fan Club
Media & Entertainment
[Manga] One Piece Movie Discussion! [Req][Books] Good Fantasy/SciFi books
Sports
2024 - 2026 Football Thread Formula 1 Discussion Tokyo Olympics 2021 Thread General nutrition recommendations Cricket [SPORT]
World Cup 2022
Tech Support
Laptop capable of using Photoshop Lightroom?
TL Community
The Automated Ban List
Blogs
Funny Nicknames
LUCKY_NOOB
Money Laundering In Video Ga…
TrAiDoS
Iranian anarchists: organize…
XenOsky
FS++
Kraekkling
Shocked by a laser…
Spydermine0240
Unintentional protectionism…
Uldridge
ASL S21 English Commentary…
namkraft
Customize Sidebar...

Website Feedback

Closed Threads



Active: 4171 users

I want to learn to C - Page 2

Blogs > Arnstein
Post a Reply
Prev 1 2 3 4 Next All
Arnstein
Profile Blog Joined May 2010
Norway3381 Posts
April 23 2012 18:29 GMT
#21
Thanks everyone!

And palmerdabbelt, thanks a lot, will definitely check that book out! (hopefully I can find it free online)
rsol in response to the dragoon voice being heard in SCII: dragoon ai reaches new lows: wanders into wrong game
Marradron
Profile Blog Joined January 2009
Netherlands1586 Posts
April 23 2012 19:01 GMT
#22
Visual basic and C# are both quite nice to learn. Knowing the basic functions and capabilitys of c/c++ would give you a good idea of what kind of things you can do. Don't go to deeply into C though. Once you know the basic building blocks move on to C# or VB. The forms, threading, lists will make you never want to go back.
palmerdabbelt
Profile Blog Joined October 2010
United States46 Posts
April 23 2012 19:18 GMT
#23
On April 24 2012 03:29 Arnstein wrote:
Thanks everyone!

And palmerdabbelt, thanks a lot, will definitely check that book out! (hopefully I can find it free online)


If there's anything else I can do to help feel free to send me a PM.
hoot00
Profile Blog Joined October 2010
United States77 Posts
April 23 2012 20:21 GMT
#24
So let's say I'm a future genius who wants to hack google.

Which one should I learn?
LEGENDS NEVER GG
blade55555
Profile Blog Joined March 2009
United States17423 Posts
April 23 2012 20:40 GMT
#25
On April 24 2012 03:25 GogoKodo wrote:
Show nested quote +
On April 24 2012 02:48 fire_brand wrote:
Don't start with C. It'll teach you the wrong stuff. You're better off learning something else that's actually useful. C actually will hinder your learning later on.

Learning C will not teach you the "wrong stuff", whatever that is, and C is definitely useful.


From what I read when I was teaching myself programming most people agreed that learning C first would give you bad habbits that will cause many problems in c+ and what not.
When I think of something else, something will go here
sieksdekciw
Profile Joined April 2012
240 Posts
Last Edited: 2012-04-23 20:45:05
April 23 2012 20:43 GMT
#26
On April 23 2012 23:22 TheToast wrote:
1. Honestly, you're probably best off learning C#,

2. Java (not actually all that different from C++), that would actually be useful for programming apps and cross-platform software.

What is this, I don't even??!

C and C++ don't have any ACTUAL applications nowadays?
A quick look here :http://www.thewindowsclub.com/what-is-android-operating-system-a-beginners-read

A beginners read on this article shows that:
`Android OS consists of over 12 million lines of code written in C / C++ / Java and XML.`

`Java is not that different from C++`

Have you ever seen Java code and have you ever seen C# code. That is right, they look alike

Hello world in C#:

class Hello
{
static public void Main()
{
System.Console.WriteLine("Hello World");
}
}


Hello world in Java:

class Hello {
public static void main(String[]args) {
Systen.out.println("Hello World");
}
}



Hello world in C++

#include <iostream>

int main()
{
std::cout << "Hello World!" << std::endl;
return 0;
}


You better go to school, kids, cause if you don't you will end up saying in forums that Java is (not that different from C++, actually). Shame on you for being outright stupid.
divito
Profile Blog Joined January 2011
Canada1213 Posts
April 23 2012 20:48 GMT
#27
If you're looking to learn C, C++, or C# (or anything really), I have a ton of eBooks if you're interested. That goes for the OP or anyone.
Skype: divito7
olabaz
Profile Blog Joined April 2009
United States298 Posts
April 23 2012 21:11 GMT
#28
So I also recently decided to learn C and have been learning for a couple of days now. The book recommended by MIT as well as a bunch of other legitimate sources seems to be C Programming Language. I looked into this book and did not really like that they didn't give the main function a return value. I then found out about another book that is widely accepted called C Programming: A Modern Approach and I really like the way it is written and laid out so far, and it is what I'll be using. A larger list of books can be found here.

I was told by a lot of people not to learn C but I feel like it'll be a fun exciting language that will help me in the my future studies of physics. Haters gonna hate!
TheToast
Profile Blog Joined August 2010
United States4808 Posts
Last Edited: 2012-04-23 21:20:58
April 23 2012 21:20 GMT
#29
On April 24 2012 05:43 sieksdekciw wrote:
Show nested quote +
On April 23 2012 23:22 TheToast wrote:
1. Honestly, you're probably best off learning C#,

2. Java (not actually all that different from C++), that would actually be useful for programming apps and cross-platform software.

What is this, I don't even??!

C and C++ don't have any ACTUAL applications nowadays?


Okay, you're just putting words in my mouth. I never said C++ didn't have applications. I was implying that C didn't have that many real world applications in terms of development of desktop applications. You do know he was talking about C and not C++ right?


You better go to school, kids, cause if you don't you will end up saying in forums that Java is (not that different from C++, actually). Shame on you for being outright stupid.


They're both object oriented programming languages, just because the syntax isn't the same doesn't mean they are drastically different. And if you want to discuss this further, try it without the attitude maybe?
I like the way the walls go out. Gives you an open feeling. Firefly's a good design. People don't appreciate the substance of things. Objects in space. People miss out on what's solid.
sieksdekciw
Profile Joined April 2012
240 Posts
April 23 2012 21:26 GMT
#30
On April 24 2012 06:20 TheToast wrote:
Show nested quote +
On April 24 2012 05:43 sieksdekciw wrote:
On April 23 2012 23:22 TheToast wrote:
1. Honestly, you're probably best off learning C#,

2. Java (not actually all that different from C++), that would actually be useful for programming apps and cross-platform software.

What is this, I don't even??!

C and C++ don't have any ACTUAL applications nowadays?


Okay, you're just putting words in my mouth. I never said C++ didn't have applications. I was implying that C didn't have that many real world applications in terms of development of desktop applications. You do know he was talking about C and not C++ right?

Show nested quote +

You better go to school, kids, cause if you don't you will end up saying in forums that Java is (not that different from C++, actually). Shame on you for being outright stupid.


They're both object oriented programming languages, just because the syntax isn't the same doesn't mean they are drastically different. And if you want to discuss this further, try it without the attitude maybe?


C++ is a OO language and java is also. Nice similarity. It's like saying an elephant is similar to a fish since they both are animals.

C# is far closer as idea and syntax and level of abstraction to Java than C++ is to any of them.
freelander
Profile Blog Joined December 2004
Hungary4707 Posts
April 23 2012 21:53 GMT
#31
Well I don't recommend java first if you want to learn programming more seriously in the future.
It's a badly designed language, in my opinion. Though for sure it has libraries for everything.

C first is nice.
And all is illuminated.
Melchior
Profile Joined January 2011
United States112 Posts
April 23 2012 22:59 GMT
#32
On April 24 2012 06:20 TheToast wrote:
I was implying that C didn't have that many real world applications in terms of development of desktop applications. You do know he was talking about C and not C++ right?

[Java and C++ are] both object oriented programming languages, just because the syntax isn't the same doesn't mean they are drastically different. And if you want to discuss this further, try it without the attitude maybe?

As far as I'm aware, plain C is still used for a lot of high performance computing applications. Desktop applications or web services? Yeah, go with C# or Java. But C's still around to stay.

Also, Bjarne Stroustrup (the original creator of C++) would disagree with your characterization of C++ as an object-oriented programming language. C++ supports object-oriented programming, but is also capable of much more. I had a pretty easy time learning Java after C, but learning proper C++ was an entirely different beast.
darmousseh
Profile Blog Joined May 2010
United States3437 Posts
April 24 2012 02:20 GMT
#33
On April 24 2012 05:43 sieksdekciw wrote:
Show nested quote +
On April 23 2012 23:22 TheToast wrote:
1. Honestly, you're probably best off learning C#,

2. Java (not actually all that different from C++), that would actually be useful for programming apps and cross-platform software.

What is this, I don't even??!

C and C++ don't have any ACTUAL applications nowadays?
A quick look here :http://www.thewindowsclub.com/what-is-android-operating-system-a-beginners-read

A beginners read on this article shows that:
`Android OS consists of over 12 million lines of code written in C / C++ / Java and XML.`

`Java is not that different from C++`

Have you ever seen Java code and have you ever seen C# code. That is right, they look alike

Hello world in C#:

Show nested quote +
class Hello
{
static public void Main()
{
System.Console.WriteLine("Hello World");
}
}


Hello world in Java:

Show nested quote +
class Hello {
public static void main(String[]args) {
Systen.out.println("Hello World");
}
}



Hello world in C++

Show nested quote +
#include <iostream>

int main()
{
std::cout << "Hello World!" << std::endl;
return 0;
}


You better go to school, kids, cause if you don't you will end up saying in forums that Java is (not that different from C++, actually). Shame on you for being outright stupid.



Have you seen it in ruby?


print "Hello World"



What are your goals? Choosing a language for learning is pretty important as it will shape your thinking process. I would reccomend choosing a language which is commonly used in areas you wish you utilize. For an all purpose language, I would say java is the way to go. If you want to do video games, go with c/c++/c#. If you want to do web stuff, php and ruby are the right choice.

If you have any questions, pm me.
Developer for http://mtgfiddle.com
NinjoOb
Profile Blog Joined November 2009
Canada128 Posts
April 24 2012 02:31 GMT
#34
Learning C as your first language might be more difficult than Java for example, mainly (at least for me) because you have to manage memory yourself and the use of pointers. If you have no programming experience, you might want to start with Java (in netbeans or something) then go to C. Alternatively, you could just jump right in C and deal with a slightly steeper learning curve.
Xyik
Profile Blog Joined November 2009
Canada728 Posts
April 24 2012 02:55 GMT
#35
Learning C is great if you ever want to do low-level stuff like writing an OS or doing any embedded programming / compiler stuff because it offers a lot of flexibility in manual memory management that can allow you to write some really efficient code. Some people aren't interested in that stuff with the web-craze nowadays brought on by google, facebook, twitter etc but that just means that there will be fewer people with that kind of skill. Don't turn away from C just because its an older language that appears to have fewer options in the real-world, it's a good place to start and will let you appreciate other languages that much more later on. It really depends on your motivation for programming and what you want to create.
VManOfMana
Profile Blog Joined December 2008
United States764 Posts
April 24 2012 03:04 GMT
#36
Since you have a Mac and you are installing X-Code, go all the way and get started on Objective C.

http://www.bignerdranch.com/book/objective-c_programming_the_big_nerd_ranch_guide

The Big Nerd Ranch guide will not teach you all of C, but the basics to get started before you start diving in to Objective C (Apple's prefered language for development). The book is very good for people who want to learn on their own pace, and prefer a more practical approach. For example, the book won't teach you every detail of vodoo black magic needed to master pointers and memory management, but just what you meed to understand and work with references in Objective C.

You can then proceed with the Cocoa (Apple's development libraries) books, that introduce you more into OSX and/or iOS programming.

Also, a very good motivator is to have a project you want to work on. Doesn't need to be very sophisticated, just something you can find useful and cook.



Personally I really appreciate programs that are small, but with a lot of attention to detail
Woo Jung Ho, FIGHTING! | "With the death of BW comes the death of an idea. And that idea, held by many BW fans, was that a computer game could actually outlive the Next New Game cycle. And to some extent it did." -Falling
Athos
Profile Blog Joined February 2008
United States2484 Posts
April 24 2012 03:21 GMT
#37
I've known java for a while, and I had a homework assignment given to me which was to write a quine in C. C really isn't that different from Java (besides the obvious difference of allocating memory through pointers and the different syntax, C being lower level, etc). Honestly, once you learn one language, picking up the rest of them is easy, as the stuff you build, and the skills you learn from 1 language give you a foundation for learning the others. So my advice is to start with java (what I did) but honestly if your heart is set on C, then go for it!
Anacletus
Profile Blog Joined April 2012
United States733 Posts
April 24 2012 03:57 GMT
#38
I'm a relatively new programming student just like you. I have minimal experience in C. However, I do have a lot of experience in C++ and am teaching myself Ruby right now. I don't think that there is any single best language to start with as you must learn to program before you learn any language in depth. That being said if you have Skype I think that I could help you out tremendously by just walking you through some basics and answering any questions you might have. You might even be able to help me with a cute little rocket ship game that I am working on.

If you (or anyone else) is interested or has any questions I have a fair amount of free time so send me a message on TL and I can send you my Skype info (not posting here).

Good luck with your quest for knowledge!
http://talk-to-stimey-please.1324083.n2.nabble.com/
Arnstein
Profile Blog Joined May 2010
Norway3381 Posts
April 25 2012 20:51 GMT
#39
Thanks everyone! Will add you Skype-folk when I have the time to start the C-learning!
rsol in response to the dragoon voice being heard in SCII: dragoon ai reaches new lows: wanders into wrong game
adwodon
Profile Blog Joined September 2010
United Kingdom592 Posts
April 25 2012 21:11 GMT
#40
On April 24 2012 06:11 olabaz wrote:
So I also recently decided to learn C and have been learning for a couple of days now. The book recommended by MIT as well as a bunch of other legitimate sources seems to be C Programming Language. I looked into this book and did not really like that they didn't give the main function a return value. I then found out about another book that is widely accepted called C Programming: A Modern Approach and I really like the way it is written and laid out so far, and it is what I'll be using. A larger list of books can be found here.

I was told by a lot of people not to learn C but I feel like it'll be a fun exciting language that will help me in the my future studies of physics. Haters gonna hate!


I was one of the better programmers when I did my MSc in particle physics, not that I could have a valid opinion...

C will not help you in physics, it will probably just hinder you, but you've obviously been told this and think you know better. Most physicists stuck with FORTRAN for the most part, they're switching over to C++ with a lot of the larger collaborations (event generators etc) because OO is too useful.

If you're serious about physics over programming you'll not need to go in depth with anything, just learn Java then C++ and some scripting languages, as well as how to use Unix and you'll be fine, you'll learn what you need when you need. As people have said, C is for low level things, learning it will serve no purpose in the physics world and you'll simply have to erase bad habits when you learn a more appropriate language.
Prev 1 2 3 4 Next All
Please log in or register to reply.
Live Events Refresh
Next event in 3h 33m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
SortOf 126
ProTech121
StarCraft: Brood War
PianO 274
Leta 138
Tasteless 129
Shinee 89
ToSsGirL 64
sSak 44
Bale 23
NotJumperer 21
Dota 2
NeuroSwarm112
Counter-Strike
Stewie2K915
m0e_tv732
shoxiejesuss371
edward44
Other Games
summit1g6099
ceh9464
Happy221
KnowMe99
Mew2King71
ToD21
Trikslyr18
Organizations
Other Games
gamesdonequick599
Dota 2
PGL Dota 2 - Main Stream284
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 14 non-featured ]
StarCraft 2
• Berry_CruncH258
• LUISG 6
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Stunt1151
• HappyZerGling126
Upcoming Events
WardiTV Team League
3h 33m
PiGosaur Cup
15h 33m
Kung Fu Cup
1d 2h
OSC
1d 15h
The PondCast
2 days
KCM Race Survival
2 days
WardiTV Team League
2 days
Replay Cast
2 days
KCM Race Survival
3 days
WardiTV Team League
3 days
[ Show More ]
Korean StarCraft League
3 days
RSL Revival
4 days
Maru vs Zoun
Cure vs ByuN
uThermal 2v2 Circuit
4 days
BSL
4 days
RSL Revival
5 days
herO vs MaxPax
Rogue vs TriGGeR
BSL
5 days
Replay Cast
5 days
Replay Cast
6 days
Afreeca Starleague
6 days
Sharp vs Scan
Rain vs Mong
Wardi Open
6 days
Monday Night Weeklies
6 days
Liquipedia Results

Completed

Proleague 2026-03-15
WardiTV Winter 2026
Underdog Cup #3

Ongoing

KCM Race Survival 2026 Season 1
Jeongseon Sooper Cup
BSL Season 22
CSL Elite League 2026
RSL Revival: Season 4
Nations Cup 2026
ESL Pro League S23 Finals
ESL Pro League S23 Stage 1&2
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter Qual

Upcoming

ASL Season 21
Acropolis #4 - TS6
2026 Changsha Offline CUP
Acropolis #4
IPSL Spring 2026
BSL 22 Non-Korean Championship
CSLAN 4
Kung Fu Cup 2026 Grand Finals
HSC XXIX
uThermal 2v2 2026 Main Event
NationLESS Cup
Stake Ranked Episode 2
CS Asia Championships 2026
IEM Atlanta 2026
Asian Champions League 2026
PGL Astana 2026
BLAST Rivals Spring 2026
CCT Season 3 Global Finals
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open Spring 2026
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Disclosure: This page contains affiliate marketing links that support TLnet.

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2026 TLnet. All Rights Reserved.