What is the meaning When we write "#include" what is # and
what does include does there???
Answers were Sorted based on User's Feedback
Answer / prasanna
For example,# is probably known as the pre-processor,because
its called conditional platform code.And also its a header
part section.
The #include use in 2 ways.One is the #include<filename> and
second is the #include"filename".The First one,if the file
is not found there the compiler checks the source header
directory.If the file is not still found there,the
pre-processor checks the current directory....
#include"filename":
If the file is not found there the compiler
checks the compile include directory.If the file is still
not found there the pre-procesor checks the source header
directory.
Note:
The compiler first checks the compile include directory
for the specified file.
And also thanks for giving the chance for scribble here.
| Is This Answer Correct ? | 6 Yes | 9 No |
Answer / sakthivel.m
Header file used for to accepped the total programs and
steps in c language.
#include<stdio.h>
#--> preprocessor (define a programing checking concept)
include--> it interface both the header file and preprocessor
< >--> Expretion of header file area
" "--> charater type using a section of header file.
stdio.h--> standard input output.header (header file name)
| Is This Answer Correct ? | 5 Yes | 8 No |
what is an inline function?
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
1 Answers College School Exams Tests,
could u able to tell about suresoft technical session
What is the purpose of type declarations?
Is main an identifier in c?
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
why program counter is 16 bit?
Differentiate between declaring a variable and defining a variable?
Write a C program where input is: "My name is xyz". output is: "xyz is name My".
Differentiate between full, complete & perfect binary trees.
Define function pointers?
Write a program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors