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...


what is use#in c

Answers were Sorted based on User's Feedback



what is use#in c..

Answer / rusmguys

# is preprocessor which tell compiler that what header
file we using in our program.
for example:
#include<stdio.h>
void main()
in the above when compiler check program it start execution
of program from main and will tell that uor header file
is "standard input output header file"

Is This Answer Correct ?    8 Yes 0 No

what is use#in c..

Answer / saurabh chakrabarty

# is used in c to write preprocessor statements (i.e. macros)

these statements are called preprocessor statements as these
statements are processed prior to the compilation of the
rest of the code by the compiler

Is This Answer Correct ?    1 Yes 0 No

what is use#in c..

Answer / sujith

Another use is for token pasting if used as ##

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

What functions are used for dynamic memory allocation in c language?

0 Answers  


O,T,T,F,F,S,S,E,N,?,?,?,T,F,F,S,S,E,N

9 Answers   ADP,


f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?

7 Answers   Geometric Software,


What is putchar() function?

0 Answers  


Tell us bitwise shift operators?

0 Answers  


what is the difference between declaration and definition of a variable or function ?

3 Answers  


Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings

0 Answers  


We can draw a box in cprogram by using only one printf();& without using graphic.h header file?

4 Answers   NIIT,


what will the following program do? void main() { int i; char a[]="String"; char *p="New Sring"; char *Temp; Temp=a; a=malloc(strlen(p) + 1); strcpy(a,p); //Line no:9// p = malloc(strlen(Temp) + 1); strcpy(p,Temp); printf("(%s, %s)",a,p); free(p); free(a); } //Line no 15// a) Swap contents of p & a and print:(New string, string) b) Generate compilation error in line number 8 c) Generate compilation error in line number 5 d) Generate compilation error in line number 7 e) Generate compilation error in line number 1

1 Answers   IBM,


What is the time and space complexities of merge sort and when is it preferred over quick sort?

0 Answers   Amazon,


How can I determine whether a machines byte order is big-endian or little-endian?

0 Answers  


write a program for fibonaci series by using while loop in c?

2 Answers  


Categories