Answer Posted / 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 |
Post New Answer View All Answers
Explain the use of fflush() function?
The file stdio.h, what does it contain?
What is a string?
Write a program to print ASCII code for a given digit.
write a program to print largest number of each row of a 2D array
What is the code in while loop that returns the output of given code?
What is scope of variable in c?
What is a nested loop?
What does c in a circle mean?
Can you write the function prototype, definition and mention the other requirements.
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What is the process to generate random numbers in c programming language?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
What is && in c programming?