questionshow do you get around the learning curve in c…

vote-for8vote-against
vote-for5vote-against

although i really don't think you're actually looking for an answer to this question, i'll give you the benefit of the doubt:

quick basic tutorial:
http://www.physics.drexel.edu/courses/Comp_Phys/General/C_basics/

more in depth tutorial:
http://www.cprogramming.com/tutorial.html

vote-for5vote-against

Your lack of help may have something to do with your lack of punctuation. Just sayin'.

vote-for1vote-against

If it were me, I'd learn a simpler language first. Javascript is much easier to learn and shares a lot of syntax with C but with a lot more things done for you. Even C++ programming is easier than C, simply because it handles more of the work for you.

Go here:
http://www.w3schools.com/js/js_examples.asp

There are interactive examples there. You can make modifications to the code, and instantly see the results of your changes. Once you get a handle on how programming works in general, you'll find it much easier to begin to understand something like C.

vote-for3vote-against

C is quite simple to learn, but is a low level language. My question back would be: How much experiance with other programming languages do you have? and What languages do you know already?

If you are going to try to learn a low level language, you need to know and understand low level computer science concepts.

vote-for1vote-against

I don't care if you're just starting out or have been writing code since punchcards: finding someone who can look at your code and tell you what you are doing wrong (or could be doing better) is essential when just starting out with a new language.

C will give you enough rope to hang yourself.