define each word #include here wat is name of # and <> and what is include??????
?
2010-01-23 17:46:46 UTC
define each word #include here wat is name of # and <> and what is include??????
Six answers:
The Beliver...
2010-01-23 18:11:51 UTC
include
This line is read "pound include i-o-stream dot h". The effect of this line is to essentially "copy and paste" the entire file iostream.h into your own file at this line. So you can think of this syntax as replacing the line #include with the contents of the file iostream.h.
#include is known as a preprocessor directive,which is used to load files..
<> indicate the start and end of file name to be loaded.. you can use " " quotes too instead of <>
Where is the file iostream.h?
This file is located somewhere in your include path. The include path indicates the directories on your computer in which to search for a file, if the file is not located in the current directory.
Why do I need to include iostream.h?
In this case, iostream.h is a file containing code for input/output operations. You need to include iostream.h so that the compiler knows about the word cout, which appears a couple of lines below.
sree
2010-01-23 20:19:44 UTC
include
#include is known as a preprocessor directive,which is used to load files..
<> indicate the start and end of file name to be loaded.. you can use " " quotes too instead of <>
<> are for header files(files with extension .h)
"" for c files (files with extension .c)
The file iostram.h is located in your include path. The include path indicates the directories on your computer in which to search for a file, if the file is not located in the current directory.
iostream.h is a file containing definitions for input/output functions that u use in ur program.
2016-02-27 00:32:44 UTC
Dear Tom Riddle, You killed the James and Lilly Potter. You killed the muggle caretaker. You killed Cedric Diggory. You killed Allistor Moody, Severus Snape and Charity Burbage. You were responsible for the insanity of the Longbottoms, the death of Sirius Black, the death of Regulus Black, Remus Lupin, Nymphadora Tonks, Ted Tonks, Fred Weasley, Albus Dumbledore, Colin Creevey and many others. In the end, the one thing you could not conquer or understand was love and it was the one thing that killed you. Good always wins over evil in the end. Didn't you know that? The handsome boy with a bright future became an evil ugly snake like man. Too bad. Was it all worth it? Sincerely, Feivel (a Muggle)
amit
2015-04-04 00:05:30 UTC
# hash means pre-processor directive that means the file will be compiled before the compilation of the main() function
include is the keyword that is a syntax to include the header file
<> tell the compiler to search the header file at the default path that is include folder
we can use "" instead of <> where "" means it tell the compiler to search the file at the default path and if it is not found there than search in bin folder also
www.notes99.com
mudasar
2016-09-29 10:28:29 UTC
Iostream.h
meg H
2010-01-23 17:50:59 UTC
TROLL MUCH????
ⓘ
This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.