What is the meaning When we write "#include" what is # and
what does include does there???
Answer Posted / vignesh1988i
# is the one of a symbol used by a developer of C language
standards for defining of macros... if you are designing a
compiler you can use a different symbol or may not use these
symbols for definition of macros............ it dosen't have
meaning and since # is a rare symbol used . so it's my guess .
the include words includes the header or any file with
extension to the C source code that the run time or linker
time..... in which may inbuilt functions are available like
printf,clrscr(),scanf() etc etc............
thank u
| Is This Answer Correct ? | 94 Yes | 50 No |
Post New Answer View All Answers
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
Describe the order of precedence with regards to operators in C.
What is use of #include in c?
What is the purpose of realloc()?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
can any one provide me the notes of data structure for ignou cs-62 paper
How to Throw some light on the splay trees?
Why do we use header files in c?
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
how to construct a simulator keeping the logical boolean gates in c
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
What is the correct code to have following output in c using nested for loop?
What is s or c?
Explain the advantages of using macro in c language?