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 |
two progs are given. one starts counting frm 0 to MAX and the other stars frm MAX to 0. which one executes fast.
plz let me know how to become a telecom protocol tester. thank you.
1.)how to find d most repeated word in a string? string ="how do you do"?? output should be do
1 Answers AAS, Nagarro, Vuram,
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
suppose we use switch statement and we intilize years name using enum statement like(jan,feb,mar,------dec) we take integer value as an input .question is that the month which we analyz is from 0 to 11 bt if i enter 12 than how he again starts from begning and print jan
writ a program to compare using strcmp VIVA and viva with its output.
What is a keyword?
What is structure padding in c?
Which is better malloc or calloc?
How can I get Single byte from 'int' type variable? Can we alter single bit or multiple bits in int type variable? if so, How?
difference between Low, Middle, High Level languages in c ?
How would you print out the data in a binary tree, level by level, starting at the top?