Answer Posted / rajasekhar
ANSI: American national standard institution
ISO: International Standard Organisation
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What does #pragma once mean?
how to write a c program to print list of fruits in alpabetical order?
Can the sizeof operator be used to tell the size of an array passed to a function?
Write a program to print fibonacci series using recursion?
What is the size of enum in c?
How can I implement sets or arrays of bits?
What are unions in c?
Explain what is the benefit of using #define to declare a constant?
How can I get the current date or time of day in a c program?
What are the usage of pointer in c?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
Write a program to print factorial of given number using recursion?
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
program for reversing a selected line word by word when multiple lines are given without using strrev
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!+....