What is the relation between # and include<stdio.h>
Answer Posted / jafar ali
when ever we include 'stdio.h' or any other header file
and use its features and functions using keyword 'include',
their codes are inserted in our source-code before
compiling.
when we use function printf() from stdio.h its code is
inserted in our code. This is done by c preprocessors and
is done before compiling the code.
And here '#' plays a vital part. # indicates that this
lines are to be considered by the preprocessor and it acts
appropriately.
i hope i have answered the question. i am new to c and
if any one want to add to this they are welcome.
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
Describe the order of precedence with regards to operators in C.
How can I determine whether a machines byte order is big-endian or little-endian?
What is "Duff's Device"?
Write a Program to find whether the given number or string is palindrome.
What are the different types of pointers used in c language?
List the different types of c tokens?
How can I split up a string into whitespace-separated fields?
How can I swap two values without using a temporary?
explain what is fifo?
Can you pass an entire structure to functions?
What is the use of function in c?
What does %p mean c?
differentiate built-in functions and user – defined functions.
What is an arrays?
What's the right way to use errno?