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 |
print the palindrome numbers in between 0 to n
for example user gives input as " 20 or 20.0 or rs 20.0 or 20.00 or rs20 and so .. on " and the output should be stored as " rs.20.00 " in a variable
Can u return two values using return keyword? If yes, how? If no, why?
What are header files and explain what are its uses in c programming?
9.how do you write a function that takes a variable number of arguments? What is the prototype of printf () function? 10.How do you access command-line arguments? 11.what does ‘#include<stdio.h>’ mean? 12.what is the difference between #include<> and #include”…”? 13.what are # pragma staments? 14.what is the most appropriate way to write a multi-statement macro?
what is volatile in c language?
9 Answers Cap Gemini, HCL, Honeywell, TCS, Tech Mahindra,
Explain what is the difference between text files and binary files?
When c language was developed?
how to set Nth bit of variable by using MACRO
What is the difference between null pointer and void pointer
10 Answers CTS, Manforce, MAQ Software,
number 2 plssssss help !!....using array.. turbo c.. create a program that will accept a number and determine if it is a happy number or an unhappy number.. example: enter a number : 7 7*7=49 then 4 and 9 4*4 and 9*9== 16 + 18 gives you 97 then 9 and 7 9*9 and 7*7 == 81 + 49 gives you 130 then 1 and 3 1*1 and 3*3 == 1 + 9 gives you 10 1*1 gives you 1 sample output: 7= 49= 16+81= 97= 81+49=130 =1+9=10 =1 "7 is a happy number" . if the last number is 2 then the number being inputed is not a happy number.
write a c program to find reminder and quotient if one number is divided by other.to code this program don't use more than 2 variables