Hello, I am software engineering student, and I am learning C, actually I have learned pretty much all the basics, will learning Objective-c be easy considering that I know C?
will learning Objective-c be easy considering that I know C?
Syntactically, Objective-C is an extension of C. So, some portion of Objective-C is exactly the same as C. Your experience of C would help learning such aspect of Objective-C.
But the core part of Objective-C programming is made of Object Oriented class system, which you cannot find in C. If you do not have any knowledge about Object Oriented Programming, you may find hard difficulties in that part.
If you have some knowledge about Smalltalk, it would help understanding OOP parts of Objective-C. Or if you know some OOP languages, such as Java or C#, that would also help learning Objective-C.
Conclusion, your knowledge of C would help learning Objective-C, but whether it is easy or not would depend on your other experiences or your way of thinking.