Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


which one is not preprocessor directive
a)#if b)#elif c)#undef d)#pragma

Answers were Sorted based on User's Feedback



which one is not preprocessor directive a)#if b)#elif c)#undef d)#pragma ..

Answer / hyderabadi

All are Preprocessor directives
below are some more preprocessors for your reference:

#define
#error
#import
#undef
#elif
#if
#include
#using
#else
#ifdef
#line
#endif
#ifndef
#pragma

Is This Answer Correct ?    19 Yes 0 No

which one is not preprocessor directive a)#if b)#elif c)#undef d)#pragma ..

Answer / prem

All are preprocessor Directives..
Refer http://msdn2.microsoft.com/en-us/library/79yewefw
(VS.71).aspx

for details

Is This Answer Correct ?    10 Yes 1 No

which one is not preprocessor directive a)#if b)#elif c)#undef d)#pragma ..

Answer / wizard

Ans is #if, no preprocessor directive with #if. it is #ifdef
or #ifndef

Is This Answer Correct ?    12 Yes 5 No

which one is not preprocessor directive a)#if b)#elif c)#undef d)#pragma ..

Answer / soumya

all are preprocessor

Is This Answer Correct ?    4 Yes 0 No

which one is not preprocessor directive a)#if b)#elif c)#undef d)#pragma ..

Answer / magesh

All are preprocessor directive

Is This Answer Correct ?    3 Yes 0 No

which one is not preprocessor directive a)#if b)#elif c)#undef d)#pragma ..

Answer / shiva

All are preprocessor directives

Is This Answer Correct ?    4 Yes 2 No

which one is not preprocessor directive a)#if b)#elif c)#undef d)#pragma ..

Answer / neeraj kandwal

all r preprocessor directive

Is This Answer Correct ?    2 Yes 0 No

which one is not preprocessor directive a)#if b)#elif c)#undef d)#pragma ..

Answer / yashwanth

#pragma is not a preprosessor directive, because pragma is
use to suppress errors,, but errors are exposed only after
compilation,, which is defenitly after preprosessing,, so
pragma is not a preprosessor diretive

Is This Answer Correct ?    2 Yes 0 No

which one is not preprocessor directive a)#if b)#elif c)#undef d)#pragma ..

Answer / yashwanth

all are preprocessor directives

Is This Answer Correct ?    1 Yes 0 No

which one is not preprocessor directive a)#if b)#elif c)#undef d)#pragma ..

Answer / lnk

before asnwering please do understand what are
preprocessive directive ....

A preprocessive derectives are used because it would be
easy to change and easy to compile in different execution
environments. Directives in the source file tell the
preprocessor to perform specific actions



# if is #if: This directive executes its associated block
of code if and only if the condition specified along with
this directive is evaluated to true.

#elif: Else-if conditions can be specified using #elif
directive. Block of code associated with #elif directive
will be triggered if the condition specified in this
directive is evaluated to true and the condition specified
by its related if statement is evaluated to false. #elif
block is optional.

#undef: This directive does the reverse process of #define
directive. #undef will reset its associated identifier to
Boolean value “false”.

#pragma: This directive controls the display of warning
message specified using #warning directive. I


so all of them are preprocessive directives ...

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More C Interview Questions

what are bit fields? What is the use of bit fields in a structure declaration?

0 Answers   Flextronics, TISL, Virtusa,


What is the difference b/w Structure & Union?

3 Answers  


which one is highest Priority in c? a)=,b)+,c)++,d)==

4 Answers  


suppose there are five integers write a program to find larger among them without using if- else

2 Answers  


Write a program to print all permutations of a given string.

0 Answers   JPMorgan Chase,


What do you mean by team??

5 Answers   Student,


What is the data segment that is followed by c?

0 Answers  


why arithmetic operation can’t be performed on a void pointer?

1 Answers  


Describe newline escape sequence with a sample program?

0 Answers  


What are the 32 keywords in c?

0 Answers  


This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory

0 Answers  


Is fortran still used in 2018?

0 Answers  


Categories