is c language is a object oreinted language?

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


Please Help Members By Posting Answers For Below Questions

Explain the use of fflush() function?

852


The file stdio.h, what does it contain?

887


What is a string?

866


Write a program to print ASCII code for a given digit.

889


write a program to print largest number of each row of a 2D array

2093


What is the code in while loop that returns the output of given code?

1642


What is scope of variable in c?

773


What is a nested loop?

870


What does c in a circle mean?

762


Can you write the function prototype, definition and mention the other requirements.

884


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

828


#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }

909


What is the process to generate random numbers in c programming language?

882


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?

820


What is && in c programming?

894