Answer Posted / thanuj
to include address of header file we are writing # before
include
| Is This Answer Correct ? | 16 Yes | 9 No |
Post New Answer View All Answers
How can I read a binary data file properly?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
What are run-time errors?
In a header file whether functions are declared or defined?
Where static variables are stored in memory in c?
How to explain the final year project as a fresher please answer with sample project
What is table lookup in c?
write a program in c language to print your bio-data on the screen by using functions.
How can I implement sets or arrays of bits?
What is pointer and structure in c?
Is a pointer a kind of array?
What is the difference between void main and main in c?
What is variable in c example?
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!+....
Why is extern used in c?