| HOME | INTRODUCTION | INSTRUCTION | SOURCE CODE | PROGRAM DEMO |
THE COMMAND FOR C++ COMPUTER PROGRAMMING LANGUAGE
| number |
COMMAND
|
WORK
|
DESCRIPTION
|
| 1 | cout | output | use with#6 to output something to screen |
| 2 | cin | input | use with number#7 to input some thing to screen |
| 3 | " .............." | display character between " " on the screen | use this command with#1 |
| 4 | ; | close line. | use this command every line except some condition |
| 5 | endl | end line | |
| 6 | << | out put | |
| 7 | >> | input | |
| 8 | int main() | tell the compiler that are going to start main program | |
| 9 | { | open section of program or function |
| 10 | } | close section of program or function | |
| 11 | #include<iostream.h> | type of function which control output and inout | |
| 12 | #include<conio.h> | ||
| 13 | // | the character after this sign is description | when the compiler see this line, it will skip this line. |
| 14 | return 0; | return the where it from |
| 15 | getch (); | press <enter> and this command will work. |