Answer Posted / iyswarya
the question means who is invented by c not who invented c
so the answer is c++
many languages are invented and develped by c
from c only other languages are ionvented such as c++,java ...
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
What are c preprocessors?
What are header files in c?
Why structure is used in c?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
How do we make a global variable accessible across files? Explain the extern keyword?
What is the use of structure padding in c?
What is string function c?
In a byte, what is the maximum decimal number that you can accommodate?
Explain how does free() know explain how much memory to release?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
what is the basis for selection of arrays or pointers as data structure in a program
What is the use of gets and puts?
Explain why can’t constant values be used to define an array’s initial size?
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.