Answer Posted / billuyadav208
Dennis Ritchie
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
What are nested functions in c?
What is the scope of static variable in c?
Explain what is page thrashing?
in iso what are the common technological language?
Is int a keyword in c?
Write a c program to build a heap method using Pointer to function and pointer to structure ?
What is bubble sort in c?
What are linked lists in c?
What are header files in c?
What is the equivalent code of the following statement in WHILE LOOP format?
Is c a great language, or what?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
can we have joblib in a proc ?
Tell me what is the purpose of 'register' keyword in c language?
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!+....