What is objective c vs c?
Answer / Ankita Chauhan
Objective-C and C are both programming languages, but there are key differences:n
1. Syntax: C has a simpler syntax, while Objective-C includes additional keywords and syntax for object-oriented programming.n
2. Object-Oriented Features: Objective-C includes features like classes, inheritance, polymorphism, and messaging that are not part of the standard C language.
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain how to call function in objective-c?
Distinguish between @synthesize and @dynamic in objective –c?
What is an nsobject?
Who calls dealloc method?
What is responder chain?
What is toll-free bridging? When is it useful?
What is #import?
How do I create a bridge header in objective c?
Explain the difference between atomic and nonatomic synthesized properties.
What happen if we send any message to an object which is released?
What is difference between objective c and swift programming?
Can I write some c++ function in same .m file? Will it compile? If no, what changes should I do to compile it?