What is the meaning When we write "#include" what is # and
what does include does there???
Answer Posted / cynthia
# is the symbol used as the syntax of the header
statement.include is the key word used to link for the
functions in the file(may be in the library or the user
defined) to be used in the program.
For instance,
#include<stdio.h>/*used to include the
library file for standard input/output statements-printf()
and scanf()*/
| Is This Answer Correct ? | 13 Yes | 15 No |
Post New Answer View All Answers
What are register variables? What are the advantage of using register variables?
What is the auto keyword good for?
What is meant by errors and debugging?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
What is the general form of function in c?
What is static identifier?
What is string constants?
What is array in C
Which is best book for data structures in c?
What is the purpose of & in scanf?
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
How can I manipulate strings of multibyte characters?
What type is sizeof?
How can you call a function, given its name as a string?
What does it mean when the linker says that _end is undefined?