QUOTE(djet @ Apr 30 2008, 08:52 PM)

Yeah I've seen C++ is used in a lot of stuff and also Java software isn't working.... >.>
Anyone got some good C resources?
ReferencesIf you install Xcode 3, you will get GNU GCC (short for GNU Compiler Collection). It consists of C, C++, and Objective-C compilers among others (such as Fortran, Java). After make a decision which language to learn, grab
the bible for that language, namely
- For C, "The C Programming Language" 2nd ed. written by Brain W Kernighan & Dennis M Ritchie
- For C++, "The C++ Programming Language" 3rd ed. written by Bjarne Stroustrup
- For Objective-C, "The Object-C 2.0 Programming Language" by Apple (as PDF)
Choice of IDEXcode also comes with a development environment (actually Xcode is just that) supporting C, C++, and Objective-C although it's no where near good enough as other well-known environments. You may want to grap
Eclipse for this purpose.
Eclipse, which is written with Java and is free, provides solid environment for languages C, C++, Java, and scripts PHP, Python, and so on.
RecommendationI recommend to learn C language first, then C++ language if you are
serious about this. Then you can use your code on virtually every platform with little effort. Otherwise, Objective-C is not a bad choice for writing some codes just for Apple applications. Good luck!