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
What is ambagious result in C? explain with an example.
How can you increase the allowable number of simultaneously open files?
When was c language developed?
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?
What are the disadvantages of a shell structure?
Can you please compare array with pointer?
What is substring in c?
Where can I get an ansi-compatible lint?
What does stand for?
What are the ways to a null pointer can use in c programming language?
Do you know null pointer?
write a c program in such a way that if we enter the today date the output should be next day's date.
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
Write a program to print factorial of given number using recursion?