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
How do I convert a string to all upper or lower case?
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
Why header file is used in c?
How to set file pointer to beginning c?
What are integer variable, floating-point variable and character variable?
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
How can I insert or delete a line (or record) in the middle of a file?
How can I convert a number to a string?
What is fflush() function?
what is the function of pragma directive in c?
Are the variables argc and argv are local to main?
What is nested structure in c?
What does the message "automatic aggregate intialization is an ansi feature" mean?
Why c is procedure oriented?