English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

10 answers

You running Windows? Download the FREE edition of Microsoft Visual C++ 2005 Express Edition from the first source below.

If you're running Linux, you've probably already got GCC installed.

For easy going tutorials try the second link. However, C isn't the easiest language to get to grips with, it's very easy to write bad code and it takes a lot to get a little - if you know what I mean. But it's worth it.

For those times when you just can't be bothered rolling your own code, check out the third and fourth links.

Once you've established yourself in C, give C++ a try. If you like C, you'll love C++.

---8X---

#include

int main( int argv, char** argc )
{

printf( "Hello world\n" );

return( 0 );

}

2006-09-06 19:05:01 · answer #1 · answered by Simon D 3 · 0 0

Getting started coding C in two *easy steps:

Step 1. Install Linux if you don't already have it. Why? Because it ships with all of the tools you could ever possibly need for C programming pre-installed.

Step 2. Aquire a copy of Practical C Programming by Steve Oualline. Orielly Press, ISBN 1-56592-306-5. Read this book cover to cover, do every excercise.

Steve does an incredible job of covering the core basics of the language, as well as introducing some advanced techniques like linked lists and using malloc(). You will not be disappointed.

* your mileage may vary.

2006-09-06 18:41:31 · answer #2 · answered by knieveltech 3 · 0 0

Ken Ritchy Book Herbert Schildt

2006-09-06 18:36:10 · answer #3 · answered by K Ban 2 · 0 0

Try the book "Teach Yourself C", by Herb Schildt. It's a well written book, and I recommend it.

You also need to pick a development environment, but you haven't told us your platform. For Windows, you cold buy the Visual C/C++ tools, and for Mac, I'd just download the free developer's tools. XCode is a pretty nice environment to work in, and has a decent debugger.

2006-09-06 18:37:13 · answer #4 · answered by arbeit 4 · 0 0

C is easy to learn. At least, the basics. Just go to google or yahoo to search for some notes on programming.

2006-09-06 18:42:58 · answer #5 · answered by Sleuth! 3 · 0 0

Google "C programming tutorial" or buy a book.

2006-09-06 18:06:59 · answer #6 · answered by Anonymous · 0 0

Have you gone to the library and gotten any books on the subject?

Look for online tutorials also.

2006-09-06 18:05:44 · answer #7 · answered by up.tobat 5 · 0 0

You must start with study!

2006-09-06 18:29:37 · answer #8 · answered by Anonymous · 0 0

that isn't a branch key-word. that's the modulus operator: % (additionally prevalent because of the fact the % sign). it rather is crude, you will could desire to tweak it to make it homework textile, yet it rather is the jist of it: int significant() { int quotient,the rest; cin >> quotient >> the rest; cout << quotient << '/' << the rest << " has fee " << quotient/the rest << endl; cout << quotient << '%' << the rest << " has fee " << quotientp.c.the rest << endl; }

2016-09-30 10:22:07 · answer #9 · answered by ? 4 · 0 0

Learn .NET instead :)

2006-09-07 08:17:04 · answer #10 · answered by Siu02rk 3 · 0 0

fedest.com, questions and answers