What you need to know: Objective-C is a strict superset of C, so everything that is valid C is also valid Objective-C. Objective-C just adds a thin object-oriented layer on top of C (in fact, the Objective-C runtime itself is implemented in pure C).
What I generally suggest to beginners is to master C first, because if they don't understand pointers, type conversions, variadic arguments, etc. they'll have serious headache during the development of The Worlds Best iPhone App Ever (TM). Until you don't master C, don't try to get into Objective-C and especially into the Cocoa Touch API, since it can be very confusing for a beginner in C.
Also, C is cross-platform, and is the language for native development, hands in hands with C++, from desktop computers through mobile devices to microcontrollers. It's a common conception that "if a system has a C compiler, that's enough to do anything that is available on the platform". Some people think that C is dead, but that's definitely not true. (According to statistics, at least - this chart suggests it was the most popular language in October 2012.)
C++: it is based on C, and also adds some object-oriented extensions to C, although it's not a strict superset of C. This means that you can write C code that is invalid in C++ or that does something different in C++ than that in C.
C++ is also a good language of choice for practically any kind of native development (and it's popular also), but again, it's a large language with a bloated grammar, and you also have to learn the concepts behind C before diving deep into C++, or you'll also have problems with the differences between pointers and references, operator overloading, name mangling, etc.
Well, that's it, pretty much. Conclusion: learn C very well first and you'll be in the possession of a powerful, cross-platform and widely used language; then learn Objective-C for iOS and Mac OS X development and C++ "just for fun" and for a handy and also powerful OO language.
{}), and borrow the ugliest, most obsolete features of (*++p = *q++;), and borrow the weird type system of. – Pascal Cuoq Oct 31 '12 at 7:40classornew. I've not used Objective-C, but I read somewhere that's supposed to be a strict superset of C - every legal C program is a legal Objective C program, there are no new keywords, only some new operator/punctuation tokens using characters that C only allows in string/character literals and comments. – Steve314 Oct 31 '12 at 7:41