
suamo
Newbie
Jan 28, 2006, 9:34 PM
Post #4 of 8
(995 views)
Shortcut
|
|
Re: [Matviy] C++ For Beginners
[In reply to]
|
Can't Post
|
|
Here ya go: #include <iostream> //Includes the input/output stream header file int main() //Begins the main function of the program { cout << "hello guys!"; //Prints out the Text "hello guys!"...cout means Console output.To end the line in direct codes, we end it with a // Semicolon.. return 0; //Return no value at the end of the program... } Done.
|