is c language is a object oreinted language?
Answers were Sorted based on User's Feedback
Answer / chandrakantham
No, c is a high level programming language.here, we cannot
create the classes and objects and also do not use the
other advantages. so it is not a object oriented
language.chandrakantham
| Is This Answer Correct ? | 18 Yes | 1 No |
Answer / shobana
it is not a object oreinted language . actually it is a procedure oriented language.
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / ganesh
i m confuse that if it not than why * has two meaning 1.
multiplication symbol and other is indirectional operator
used in pointer.
| Is This Answer Correct ? | 3 Yes | 7 No |
Explain what does a function declared as pascal do differently?
how to find out the reverse number of a digit if it is input through the keyboard?
What do you mean by keywords in c?
How can a program be made to print the line number where an error occurs?
Is main an identifier in c?
Which of the Following will define a type NODE that is a node in a Linked list? A)struct node {NODE*next;int x;};type def struct node NODE; B)typedef struct NODE {struct NODE *next;int x;}; C)typedef struct NODE {NODE *next;int x;}; D)typedef struct {NODE *next;int x;}NODE;
What is a macro, and explain how do you use it?
Why string is used in c?
what is a constant pointer in C
How will you declare an array of three function pointers where each function receives two ints and returns a float?
What is pass by value in c?
can we store values and addresses in the same array? explain