WHAT IS PRE POSSESSORS?

Answers were Sorted based on User's Feedback



WHAT IS PRE POSSESSORS?..

Answer / billuyadav208

Pre possessors are the pre defined libraries which can loaded
befor main function ....

Is This Answer Correct ?    36 Yes 1 No

WHAT IS PRE POSSESSORS?..

Answer / avinash

#IS PREPOSSESSOR.

Is This Answer Correct ?    31 Yes 7 No

WHAT IS PRE POSSESSORS?..

Answer / krishna

preprocessor directives are not the libraries which should
be included while writing a program .But it is a notation
used to include the libraries which are included in the
header part of a program

Is This Answer Correct ?    2 Yes 0 No

WHAT IS PRE POSSESSORS?..

Answer / ravikanth

The preprocessor is used to modify your program according to
the preprocessor directives in your source code.

Preprocessor directives (such as #define) give the
preprocessor specific instructions on how to modify your
source code. The preprocessor reads in all of your include
files and the source code you are compiling and creates a
preprocessed version of your source code.

Is This Answer Correct ?    2 Yes 2 No

WHAT IS PRE POSSESSORS?..

Answer / shilpa

public,private,protected

Is This Answer Correct ?    0 Yes 0 No

WHAT IS PRE POSSESSORS?..

Answer / priya nagmoti

In computer science, a preprocessor is a program that
processes its input data to produce output that is used as
input to another program. The output is said to be a
preprocessed form of the input data, which is often used by
some subsequent programs like compilers

Is This Answer Correct ?    2 Yes 4 No

Post New Answer

More C Interview Questions

Why is #define used?

0 Answers  


diff between exptected result and requirement?

0 Answers   HCL,


What is string concatenation in c?

0 Answers  


Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error

8 Answers   IBM,


2. What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value

3 Answers   Accenture,






What is the maximum no. of arguments that can be given in a command line in C.?

0 Answers   HCL,


Why are all header files not declared in every c program?

0 Answers  


Explain the process of converting a Tree into a Binary Tree.

0 Answers   Ignou,


Can main () be called recursively?

0 Answers  


What is the -> in c?

0 Answers  


what is the use of operator ^ in C ? and how it works?

2 Answers  


What is the function of volatile in c language?

0 Answers  


Categories