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 |
Do you have any idea how to compare array with pointer in c?
What is the use of a static variable in c?
What is wrong with this code such that it doesnt produce the input reversed? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char Space = ' '; char LineOfText; float count; LineOfText = getchar(); while ((LineOfText = getchar()) != '/n'); { count = strlen(LineOfText) - 1; while (count >= 0) { putchar(LineOfText[count]); count--; } } getchar(); return 0; }
34.what are bitwise shift operators? 35.what are bit fields? What is the use of bit fields in a structure declaration? 36.what is the size of an integer variable? 37.what are the files which are automatically opened when a c file is executed? 38.what is the little endian and big endian? 39.what is the use of fflush() function? 40.what is the difference between exit() and _exit() functions? 41.where does malloc() function get the memory? 42.what is the difference between malloc() and calloc() function? 43.what is the difference between postfix and prefix unary increment operators?
Can we increase size of array in c?
How is null defined in c?
By using C language input a date into it and if it is right?
Why doesn't the code "int a = 1000, b = 1000; long int c = a * b;" work?
What is the difference b/w Structure & Class?
What is extern variable in c with example?
What are dangling pointers?
What is a file descriptor in c?