which one is not preprocessor directive
a)#if b)#elif c)#undef d)#pragma
Answer Posted / shiva
All are preprocessor directives
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
Explain the properties of union. What is the size of a union variable
Which is more efficient, a switch statement or an if else chain?
What is a #include preprocessor?
how to find binary of number?
What is scanf_s in c?
What is string constants?
what is different between auto and local static? why should we use local static?
How can I find out if there are characters available for reading?
What is default value of global variable in c?
What does malloc () calloc () realloc () free () do?
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
Write a c program to demonstrate character and string constants?
What is the difference between int main and void main?
what are the advantages of a macro over a function?
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!+....