Answer Posted / harika.thota001@gmail.com
The preprocessor provides the ability for the inclusion of header files, macro expansions, conditional compilation, and line control.
In many C implementations, it is a separate program invoked by the compiler as the first part of translation.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the deal on sprintf_s return value?
Is return a keyword in c?
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
What is merge sort in c?
How #define works?
What are pointers? Why are they used?
Can stdout be forced to print somewhere other than the screen?
#include
Can we use any name in place of argv and argc as command line arguments?
Explain what is operator promotion?
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
Explain what are the different data types in c?
State the difference between realloc and free.