who is the founder of c

Answer Posted / athulraj

its not dennis ritche .its athul

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what is the height of tree if leaf node is at level 3. please explain

1591


In C language what is a 'dangling pointer'?

630


Write a c program to build a heap method using Pointer to function and pointer to structure ?

4168


How to draw the flowchart for structure programs?

8756


Explain the use of bit fieild.

702






#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

620


How can I implement a delay, or time a users response, with sub-second resolution?

614


What is equivalent to ++i+++j?

637


1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?

1905


Process by which one bit pattern in to another by bit wise operation is?

608


What is the difference between class and object in c?

572


Describe the modifier in c?

593


What does sizeof function do?

607


Where we use clrscr in c?

693


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

2240