Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where is the best place to learn C? [closed]

Tags:

c

I absolutely loved Dive Into Python when I picked up Python.

In fact, "tutorials" such as Dive Into Python work really well for me; short brief syntax explanations, and plenty of examples to get things going.

I learn really well via examples.

I have programming experience in Java, Scheme, Python, PHP, Javascript, etc.

Is there anywhere you would recommend online to quickly pick up the C programming language, and best practices?

like image 755
nubela Avatar asked Aug 28 '09 07:08

nubela


People also ask

How long does it take to learn C fully?

not more than 2-3 months if your beginner. if you spend 2hrs per day, enjoy learning. depends on you. Typically you will need around 10 to 15 days to get a hang of the language and another 20 days to get control on it.

What is the best website to learn C programming for free?

tutorialspoint. This website contains bunch of tutorials on different programming languages. This tutorial is created for software programmers with a need to understand the C programming language from scratch.


Video Answer


2 Answers

The C Programming Language - Kernighan & Ritchie

like image 194
Taylor Leese Avatar answered Sep 23 '22 01:09

Taylor Leese


CProgramming.com

is one of the best places to learn C is.

It has clear and concise tutorials about

  • Basics of C ( loops , pointers recursion etc.)
  • Data structures (linked lists,binary trees etc. )
  • OpenGL for graphics
  • Tips and Tricks
  • Code Snippets
  • and even AI (neural networks)

They also have small Quiz at the end of each chapter.

The K & R is simply the best (but I guess you wanted some online tutorial).

like image 40
Pratik Deoghare Avatar answered Sep 24 '22 01:09

Pratik Deoghare