Why do u use # before include in a C Progam?
Answers were Sorted based on User's Feedback
# is nothing but the preprocessor operator.That means it
will execute before the main() execution.
That means we are required to include that header file
those are required to our program before main(),
| Is This Answer Correct ? | 56 Yes | 4 No |
Answer / rama krishna sidhartha
# symbol denotes preprocessor directive in C or C++. It
means that it says the compiler that it containd some
predefined information. Like it mentions any library
included. eg # include stdio.h
| Is This Answer Correct ? | 26 Yes | 2 No |
Answer / thanuj
to include address of header file we are writing # before
include
| Is This Answer Correct ? | 16 Yes | 9 No |
Answer / srinath
# is symbol of the Preprocessor directive means it tells the
compiler i will execute before compilation time.the
preprocessor directives like
#include<stdio.h>
# define MAX 10
Srianth
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / sashfsjfg
# is a preprocessor it is used tell the current header file
to add some wat needed source code to program it invokes
before main function
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / sandeep kr. maurya
in programming all operators are used(leaving # and @) then
programers want to a symbol for preprocessor. and # is
nothing in used then programers take this symbol for
preprocessor. and @ is used in Email.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / manav kothari
# is preprocessor directive. It will execute before compilation is done
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / yuvaraj
# is nothing but a symbol which denote starting of preprocessor i.e its an syntax like comment line /*
| Is This Answer Correct ? | 5 Yes | 14 No |
what is the use of bitfields & where do we use them?
all c language question
how can i sort numbers from ascending order and descending order using turbo c..
write a c program for swapping two strings using pointer
C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
How we can write a value to an address using macro..?
what are bps & baud rates? differentiate these two?
What is c standard library?
What are preprocessor directives in c?
How can I list all of the predefined identifiers?
What is a null pointer in c?