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

Answer Posted / manav kothari

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

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why ca not I do something like this?

795


a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if

928


main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none

1042


What is the difference between typedef struct and struct?

849


what is the format specifier for printing a pointer value?

792


Explain bitwise shift operators?

934


Is c++ based on c?

852


Why do we use null pointer?

797


What are pointers?

864


How can I do graphics in c?

783


Tell me what are bitwise shift operators?

907


Write a program to reverse a given number in c language?

867


What is the difference between array and structure in c?

807


a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list

844


write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...

1716