Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

Hi can anyone tell what is a start up code?

0 Answers   CTS,


c program to arrange digits in a no in ascending and descending order

1 Answers  


What is the scope of an external variable in c?

0 Answers  


how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.

0 Answers  


How can you restore a redirected standard stream?

0 Answers  


There are N egg baskets and the number of eggs in each basket is a known quantity. Two players take turns to remove these eggs from the baskets. On each turn, a player must remove at least one egg, and may remove any number of eggs provided they all belong to the same basket. The player picking the last egg(s) wins the game. If you are allowed to decide who is going to start first, what mathematical function would you use to decide so that you end up on the winning side?

1 Answers   Hathway,


any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above

0 Answers  


Explain what is the benefit of using enum to declare a constant?

0 Answers  


Is struct oop?

0 Answers  


#include<stdio.h> int f(int,int); int main() { printf("%d",f(20,1)); return 0; } int f(int n,int k) { if(n==0) return 0; else if(n%2)return f(n/2,2*k)+k; else return f(n/2,2*k)-k; } how this program is working and generating output as 9....?

1 Answers  


What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }

0 Answers   Google,


print the table 5 in loops

3 Answers  


Categories