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 |
What is ponter?
int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain me output????
What does main () mean in c?
What is the function of volatile in c language?
Write a main() program that calls this function at least 10 times. Try implementing this function in two different ways. First, use an external variable to store the count. Second, use a local variable. Which is more appropriate?
How would you find a cycle in a linked list?
can we declare a function inside the structure? ex: struct book { int pages; float price; int library(int,float); }b; is the above declaration correct? as it has function declaration?
How can I manipulate strings of multibyte characters?
Why & is used in scanf in c?
What is string function c?
list the no of files created when c source file is compiled
What are the benefits of c language?