tags:

views:

111

answers:

6

Possible Duplicate:
How do I learn C?

Hi friends,

I am new to stack overflow and am also a beginner to C programming. Could you please suggest me some good links for C programming (Assuming Programming comes by practice suggest me a link which has good number of programs ) specially the ones related to pointers, call back functions etc.

A: 

Read a book. There's a great list here: http://stackoverflow.com/questions/194812/list-of-freely-available-programming-books

Programming doesn't come by practice so much as by reading. The basic ideas and knowledge comes from proper instruction (like a book or professor).

JoshD
+2  A: 

If you really want to learn C, the best link I can give you is the one to purchase "The C Programming Language" (also known as K & R) on Amazon:

The C Programming Language - Amazon

Justin Niessner
+1: a.k.a. "the C bible". (I was also typing the response before reading your answer, and then I spared a duplicate answer :))
ArunSaha
+2  A: 

Take a peek at the most frequently asked questions at the Stack Overflow C FAQ

Soldier.moth
A: 

I know you said C, and I'm giving you a link to something for C++, but the main point I want to share is this 'trick' of knowing common names for college classes and hunting for sites set up by their instructors. I've gotten great use of it.

I did a search for 'data structures used in cs112' and came up with this PDF that walks a freshmen CS student through the paces. Anyway, I hope you find it useful.

Gabriel
A: 

if you like video lectures try this Stanford course , it is a programming paradigm course , but the first part is about c and pointers :) , i think you will enjoy it

Ahmed Kotb