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 the difference between null pointer and wild pointer?
what will be the output of this program? #include<stdio.h> #define cube(x) x*x*x void main() { int i,j=5; i=cube(j+3); printf("i=%d",i); }
What is a program flowchart?
What is meant by initialization and how we initialize a variable?
how can i make a program with this kind of output.. Enter a number: 5 0 01 012 0123 01234 012345 01234 0123 012 01 0
Which are low level languages?
Which is the best website to learn c programming?
What are valid signatures for the Main function?
void main() { char c; while(c=getchar()!='\n') printf("%d",c); } o/p=11 why?
how logic is used
Which is more efficient, a switch statement or an if else chain?
What is a pointer value and address in c?