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 |
What are keywords c?
What is malloc return c?
Explain what is wrong with this statement? Myname = ?robin?;
How can I send mail from within a c program?
What is multidimensional arrays
7. Identify the correct argument for the function call fflush() in ANSI C: A)stdout B)stdin C)stderr D)All the above
if p is a string contained in a string?
What is the concatenation operator?
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
how to find turn around time in operating system?
Why the below program throughs error during compilation? #include<stdio.h> #include<conio.h> enum { ZERO, ONE, TWO, }; main() { printf("%d",&TWO); getch(); }