WHAT IS PRE POSSESSORS?
Answers were Sorted based on User's Feedback
Answer / billuyadav208
Pre possessors are the pre defined libraries which can loaded
befor main function ....
Is This Answer Correct ? | 36 Yes | 1 No |
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 |
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 |
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 |
Write down the program to sort the array.
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
Is main a keyword in c?
What is the scope of static variable in c?
What is the purpose of ftell?
How do you view the path?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
What is a buffer in c?
What is fflush() function?
HOW TO ANSWER IF ASKED " WHAT KIND OF A PERSON ARE YOU?" I NEED AN ANSWER THAT IMPRESS THE INTERVIEWER
List the difference between a "copy constructor" and a "assignment operator"?
The statement, int(*x[]) () what does in indicate?