Do you know the purpose of 'register' keyword?
No Answer is Posted For this Question
Be the First to Post Answer
4.A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
what is the difference between getch() and getche()?
what is constant pointer?
write a program to swap two variables a=5 , b= 10 without using third variable
What is the difference between struct and union in C?
How would you sort a linked list?
What does 4d mean in c?
what is the difference between 123 and 0123 in c?
Can a pointer point to null?
What should not contain a header file?
what is the difference between const volatile int i & volatile const int j;
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!+....