who is the founder of c
Answer Posted / amit kumar
Dennis Richie
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Who developed c language?
Is main is user defined function?
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
Why we use conio h in c?
What is the use of a static variable in c?
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
Write a program to check armstrong number in c?
Are comments included during the compilation stage and placed in the EXE file as well?
What does 4d mean in c?
What is the use of header files?
Discuss the function of conditional operator, size of operator and comma operator with examples.
What is the use of extern in c?
Write a program to swap two numbers without using third variable in c?
What is scanf_s in c?
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....