What is the meaning When we write "#include" what is # and
what does include does there???
Answer Posted / kamal
# is a symbol with the help of which the compiler will
first process the statement following # before compiling
the program. for example if we have something called
#define MAX 100 then the compiler will replace all MAX in
the program with 100 and then compile the program.
Likewise include following # will tell the compiler to
include the header file mentioned in the statement.
ex: #include<stdio.h>
I think all will be satisfied with my answer....!
| Is This Answer Correct ? | 20 Yes | 5 No |
Post New Answer View All Answers
Is Exception handling possible in c language?
Write a program which returns the first non repetitive character in the string?
Why is c called c?
praagnovation
What is the newline escape sequence?
What is "Hungarian Notation"?
In C, What is the #line used for?
What is the difference between NULL and NUL?
There seem to be a few missing operators ..
What is break statement?
What is a structure in c language. how to initialise a structure in c?
Explain how many levels deep can include files be nested?
What is d scanf?
In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.
Explain how do you view the path?