who is the founder of c
Answers were Sorted based on User's Feedback
Answer / tacit girl
Dennis Ritchie in 1972 @ AT & T's bell LAboratories...
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / raj
full name of denish ritchi
what is the full name of ........?
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / dinesh charge
C was founded by Dennis Ritchie & Ken Thompson at Bell Labs between 1969 and 1973.
c paved the way for Java and C++.
Also Dennis Ritchie was a co-developer of UNIX OS.
Unix paved the way for many operating system like Apple's MAC OS X and Google's Android.
| Is This Answer Correct ? | 0 Yes | 0 No |
Write a small C program to determine whether a machine's type is little-endian or big-endian.
write a c program to print "Welcome" without using semicolon in the whole program ??
What does #pragma once mean?
Why is not a pointer null after calling free?
I have an array of 100 elements. Each element contains some text. i want to: append a star character to the end of every fifth element remove every second character from every tenth element, and… add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.
what do you mean by enumeration constant?
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
Can we change the value of constant variable in c?
What are data structures in c and how to use them?
how does the C compiler interpret the following two statements p=p+x; q=q+y; a. p=p+x; q=q+y b. p=p+xq=q+y c. p=p+xq; q=q+y d. p=p+x/q=q+y
what will be the output off the following program? #include<stdio.h> int main() { int a; a=015+0*71+5; printf("%d,a"); return0; }