who is the founder of c
Answers were Sorted based on User's Feedback
Answer / macdonald
It's Dennis Ritchie. If you really want to post an answer,
make sure it's an accurate one.
| Is This Answer Correct ? | 123 Yes | 7 No |
Answer / 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 |
Answer / k.dhinesh
Originally developed by DENNIS RITCHIE in 70's
Outgrowth of two earlier languages called BCPL and B.
1978,When Kernighan and Ritchie published a definitive
description of the language.
| Is This Answer Correct ? | 24 Yes | 3 No |
Answer / priya
C language was founded by Dennis Richie at AT&T bell labs
| Is This Answer Correct ? | 21 Yes | 1 No |
Answer / suman boddukuru
I am saying here only the best solution for this
question "Ken thomson's B language + Dennis Ritche's
cCompiler= Complete C language" ok ? No more arguments.
thank u
| Is This Answer Correct ? | 19 Yes | 0 No |
Answer / raghavendra
B language is also called as typeless lanugage, developed
by ken thompson while writing unix. so Dennies ritchie
written C compiler contains data types. then Unix written
in C language
| Is This Answer Correct ? | 9 Yes | 0 No |
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }
Reverse the bit order in a single macro. eg. i/p = 10010101 --> o/p = 10101001
The difference between printf and fprintf is ?
is forign key will be unique key any table or not?
int a[3][5]={ {1,2,3,4,5],{2,3,4,5,6},{10,11,12,13,14}}; int *p=&a; printf(ā%dā,*(*(x+1)+3));
int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }
What are unions in c?
print out put like this form 1 2 3 4 5 6 3 5 7 9 11 8 12 16 20
What are the different types of objects used in c?
If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???
Why is C called a middle-level language?
In c programming language, how many parameters can be passed to a function ?