Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Start learning C# without knowing C? [closed]

Tags:

Is it advisable to directly jump onto C# with knowing just a mere bit of C (just some basics) or even may be without knowing C ?

like image 556
Dharavk Avatar asked Aug 19 '09 16:08

Dharavk


People also ask

How do I start learning C for beginners?

Get started with C. Official C documentation - Might be hard to follow and understand for beginners. Visit official C Programming documentation. Write a lot of C programming code - The only way you can learn programming is by writing a lot of code.

What should I learn first in C language?

C# While C is one of the more difficult languages to learn, it's still an excellent first language pick up because almost all programming languages are implemented in it. This means that once you learn C, it'll be simple to learn more languages like C++ and C#.


1 Answers

C# and C are very different, they share syntax but the style of programming is quite different. It wouldn't hurt learning C but if your target is C# then start with that.

Learning C will teach you more about how a computer works and give you a low level understanding. C# is a high level language with a lower learning curve to get a graphical interface.

Joel and Jeff frequently discuss the value of learning C, stackoverflow podcast #2 is one example

like image 65
Colin Gravill Avatar answered Sep 28 '22 10:09

Colin Gravill