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

Answer Posted / thanuj

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

Is This Answer Correct ?    16 Yes 9 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is 1f in c?

1845


Which one would you prefer - a macro or a function?

609


What are the modifiers available in c programming language?

745


Explain what are preprocessor directives?

634


What do the functions atoi(), itoa() and gcvt() do?

730






struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer

770


What are the different types of data structures in c?

610


Why do we need functions in c?

567


Why is this loop always executing once?

621


What is volatile variable in c?

664


What does d mean?

593


How do I round numbers?

606


How many types of arrays are there in c?

604


What is structure in c language?

627


What's the difference between constant char *p and char * constant p?

663