Why is c not oop?



Why is c not oop?..

Answer / Pankaj Chaudhary

C is not an object-oriented programming language because it doesn't support concepts such as classes, objects, inheritance, and polymorphism which are fundamental in object-oriented programming.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

What are keywords c?

1 Answers  


What is malloc return c?

1 Answers  


Explain what is wrong with this statement? Myname = ?robin?;

1 Answers  


How can I send mail from within a c program?

1 Answers  


What is multidimensional arrays

1 Answers  


7. Identify the correct argument for the function call fflush() in ANSI C: A)stdout B)stdin C)stderr D)All the above

10 Answers   Accenture,


if p is a string contained in a string?

1 Answers  


What is the concatenation operator?

1 Answers  


is compiler do read the data line by line or not. ??

6 Answers   LG Soft, Satyam, Tech Mahindra,


main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above

6 Answers  


how to find turn around time in operating system?

3 Answers  


Why the below program throughs error during compilation? #include<stdio.h> #include<conio.h> enum { ZERO, ONE, TWO, }; main() { printf("%d",&TWO); getch(); }

2 Answers  


Categories