English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

2007-10-22 02:58:40 · 5 answers · asked by Anonymous in Computers & Internet Programming & Design

5 answers

It is the way to make sure that your VB program can take advantage of the hardware drivers that come with the machine you will run the program on. That way with no effort you can print, display, and read the keyboard. You never have to write your own interfaces for those hardware items.

2007-10-22 03:03:30 · answer #1 · answered by Rich Z 7 · 0 0

#include ("pound include") is a preprocessor directive which instructs the compiler to include the stdio.h file in the current file. stdio.h is part of the C standard library and provides standard input and output functionality.

2007-10-22 10:02:31 · answer #2 · answered by mdd4696 3 · 0 0

#include"stdio.h" is a preprocessor command. Here the library function stdio.h is included for compilation using #include.

As for stdio.h, it is the header library function that holds C++ or C defined funtions such as gets(), puts(), getline() and putline().

Stdio.h refers to standard input/output function.

2007-10-22 10:08:48 · answer #3 · answered by Sudharsan R 2 · 0 0

do u mean #include ?

stdio.h means standard input output headerfile that will execute or read the commands for input and output.
#include means the preprocessor that will include the stdio.h

I'm in JAVA programming language but I can remember C and C++ commands...

2007-10-22 10:10:06 · answer #4 · answered by arnold 1 · 0 0

It includes a header file named stdio. Header files are needed in a C++ Program so that the compiler recognises certain specific commands you use ...

2007-10-22 10:04:15 · answer #5 · answered by Keshav D 2 · 0 0

fedest.com, questions and answers