who is the founder of c

Answer Posted / parmjeet kumar

c was evolved from ALGOL, BCPL AND B by dennis ritchie at
bell lab in 1972.

Is This Answer Correct ?    26 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same

647


Explain the difference between #include "..." And #include <...> In c?

621


How was c created?

584


Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].

634


What is gets() function?

663






Differentiate Source Codes from Object Codes

809


Define VARIABLE?

684


What is the purpose of ftell?

595


Disadvantages of C language.

649


What is a stream water?

647


Explain main function in c?

616


What is the function of this pointer?

666


we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?

800


a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion

2330


What is pre-emptive data structure and explain it with example?

3203