Why do u use # before include in a C Progam?

Answers were Sorted based on User's Feedback



Why do u use # before include in a C Progam?..

Answer / sudarsan gouda

# 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

Why do u use # before include in a C Progam?..

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

Why do u use # before include in a C Progam?..

Answer / thanuj

to include address of header file we are writing # before
include

Is This Answer Correct ?    16 Yes 9 No

Why do u use # before include in a C Progam?..

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

Why do u use # before include in a C Progam?..

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

Why do u use # before include in a C Progam?..

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

Why do u use # before include in a C Progam?..

Answer / manav kothari

# is preprocessor directive. It will execute before compilation is done

Is This Answer Correct ?    1 Yes 0 No

Why do u use # before include in a C Progam?..

Answer / akashdixit254

preprocesser function

Is This Answer Correct ?    0 Yes 0 No

Why do u use # before include in a C Progam?..

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

Post New Answer

More C Interview Questions

write a program for the normal snake games find in most of the mobiles.

0 Answers   Accenture, Wipro,


What is calloc()?

0 Answers   Adobe,


Write a programm such that if user enter 11.25 it roundup to 11 but if user enter 11.51 upto 11.99 it will round up to 12 i.e.;convert the floting point value into integer format as explain above..

2 Answers  


can we declare a variable in different scopes with different data types? answer in detail

3 Answers   TCS,


In a switch statement, explain what will happen if a break statement is omitted?

0 Answers  






why arithmetic operation can’t be performed on a void pointer?

1 Answers  


Write a program to reverse a string.

0 Answers   Global Logic, iNautix, TCS, Wipro,


How are variables declared in c?

0 Answers  


What is the g value paradox?

0 Answers  


in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above

0 Answers  


What is variable initialization and why is it important?

0 Answers  


Write a c program to demonstrate Type casting in c?

2 Answers  


Categories