which one is not preprocessor directive
a)#if b)#elif c)#undef d)#pragma
Answer Posted / thoufik
#if is not the preprocessor.......
Is This Answer Correct ? | 3 Yes | 6 No |
Post New Answer View All Answers
What is the right type to use for boolean values in c? Is there a standard type?
What is define directive?
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!+....
What are void pointers in c?
what is uses of .net
Is r written in c?
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
Why ca not I do something like this?
Why does notstrcat(string, "!");Work?
What are the ways to a null pointer can use in c programming language?
What are header files and explain what are its uses in c programming?
Who invented bcpl language?
What is c method?
Differentiate abs() function from fabs() function.
How arrays can be passed to a user defined function