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

1)what is the error in the following stmt where str is a char array and the stmt is supposed to traverse through the whole character string str? for(i=0;str[i];i++) a)There is no error. b)There shud be no ; after the stmt. c)The cond shud be str[i]!='\0' d)The cond shud be str[i]!=NULL e)i shud be initialized to 1

4 Answers  


What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.

0 Answers   IBM,


What is the sizeof () a pointer?

0 Answers  


Given an array of length N containing integers between 1 and N, determine if it contains any duplicates.

3 Answers   SilverKey,


What are the different types of C instructions?

0 Answers   InterGraph,






Do pointers store the address of value or the actual value of a variable?

0 Answers   Fidelity,


write a programming in c to find the sum of all elements in an array through function.

0 Answers  


Is printf a keyword?

0 Answers  


What is the difference between c &c++?

0 Answers  


Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)

2 Answers   HCL, IBM, Satyam, Vimal, Vimukti Technologies,


main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }

6 Answers  


#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?

4 Answers   Ramco,


Categories