Answer Posted / raj
This is for including Header files in your 'C' program.
Header files means to include built-in files of your C
library.The #include directive tells the preprocessor to
treat the contents of a specified file as if those contents
had appeared in the source program at the point where the
directive appears. You can organize constant and macro
definitions into include files and then use #include
directives to add these definitions to any source file.
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
in iso what are the common technological language?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
How can I read/write structures from/to data files?
What is the benefit of using an enum rather than a #define constant?
Which built-in library function can be used to match a patter from the string?
What does %c mean in c?
What is #ifdef ? What is its application?
What is s in c?
Here is a neat trick for checking whether two strings are equal
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
Which control loop is recommended if you have to execute set of statements for fixed number of times?
What is the difference between fread buffer() and fwrite buffer()?
what is the difference between class and unio?