Who is invented by c?
Answers were Sorted based on User's Feedback
Answer / murali
No one is invented by C but C was invented by "Dennis Richie".
| Is This Answer Correct ? | 7 Yes | 7 No |
Answer / iyswarya
the question means who is invented by c not who invented c
so the answer is c++
many languages are invented and develped by c
from c only other languages are ionvented such as c++,java ...
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / mithun das
Who invented C?
Answer:Dennis Ritchie.
In the year 1972.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / rakesh
C++ is the next wht is developed by the idea of c...
the Q is nt abt who invented C
its like wht is invented or after C
| Is This Answer Correct ? | 3 Yes | 4 No |
number of times a digit is present in a number
what are bit fields in c?
Is multithreading possible in c?
how to find anagram without using string functions using only loops in c programming
write a program to concatenation the string using switch case?
the expression a=30*1000+2768; evalutes to a) 32768 b) -32768 c) 113040 d) 0
Write a C program linear.c that creates a sequence of processes with a given length. By sequence it is meant that each created process has exactly one child. Let's look at some example outputs for the program. Here the entire process sequence consists of process 18181: Sara@dell:~/OSSS$ ./linear 1 Creating process sequence of length 1. 18181 begins the sequence. An example for a sequence of length three: Sara@dell:~/OSSS$ ./linear 3 Creating process sequence of length 3. 18233 begins the sequence. 18234 is child of 18233 18235 is child of 18234 ........ this is coad .... BUt i could not compleate it .....:( #include <stdio.h> #include <sys/types.h> #include <unistd.h> #include <stdlib.h> int main(int argc, char *argv[]) { int N; pid_t pid; int cont; if (argc != 2) { printf("Wrong number of command-line parameters!\n"); return 1; } N = atoi(argv[1]); printf("Creating process sequence of length %d.\n",N); printf("%d begins the sequence.\n",getpid()); /* What I have to do next ?????? */ }
how to print 212 as Twohundreds twelve plz provide me ans soon
write a program to find out prime number using sieve case?
what do you mean by enumeration constant?
my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?
What is console in c language?