i mean what does # represent ,what does include represent and similarly what does %26lt;,stdio,.,h,%26gt;represent
What does #include%26lt;stdio.h%26gt; stand for in c program?
The # is a directive that says "handle this with the precompiler". The inlcude statement means "make everything in the provided file available to this program". stdio.h is a header file that describes the interface to the stdio library, which contains basic IO utilities needed by almost every program.
The angle brackets tell the compiler to search for stdio.h in the path specified by the INCLUDE environment variable first. This allows newer libraries to supercede older ones without having to change make files
Reply:C++ takes all the command that you use from libraries. The #include %26lt;stdio.h%26gt; means that you want C++ to use that library for different commands.
Reply:#include%26lt;stdio.h%26gt;
In 'C' programming language all library functions are included in different header files in different categories with ".h" extension.
# is called as "preprocessor". Means it will include the header file before comipling the code. "include" gives command to include something
"stdio" stands for "standard input output". As it is a header file so .h extension is there. It contains some stanrd functions related to input and ouput such as "printf", "scanf"..
You will find other header files as "math.h" which includes all mathematical library functions.
Reply:An understanding of how C processes a source code to build an application would be helpful. I will give a brief explanation. When you build an application, C compiler consists of three individual modules or programs. The first is the preprocessor, the next is the compiler, and last is the linker/assembler. Any symbol with a # is a preprocessor command. The preprocessor will go through your source execute any of its commands and strip out any comments. #include is one of these commands that essentially pastes previously written code into your program.. printf is a function. When you use it, it must be defined somewhere. stdio.h is a header file, where this and other similar functions are defined. stdio.h stands for standard input output header. %26lt;%26gt; symbols instead of "" means the header is located in the standard search path.
Reply:How do your home address represent? .Using #365 na in c programm also '#' represent the Address .It tells the compiler that we are inputing the standerd type of the program
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment