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 program to print numbers from 1 to 100 without using loop in c?
How can you invoke another program from within a C program?
What are volatile variables in c?
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?
Explain what is a 'locale'?
Define a structure to store roll no, name and marks of a student. Using the structure of above write a ‘C’ program to create a file “student.dat”. There must be one record for every student in the file. Accept the data from the user.
Without Computer networks, Computers will be half the use. Comment.
How can I open files mentioned on the command line, and parse option flags?
Which is not valid in C? 1) class aClass{public:int x;} 2) /* A comment */ 3) char x=12;
How can I check whether a file exists? I want to warn the user if a requested input file is missing.
what is the purpose of the code, and is there any problem with it. bool f( uint n ) { return (n & (n-1)) == 0; }
Can i use Two or More Main Funtion in any C program.?