+ 1
Could some one put me through on the first stage..im new..like.8 minutes new
its that hello world part..I'm lost
5 Antworten
+ 8
you will. dont rush these things. i been at it for months now and still feel a noob
+ 1
ah I gotcha. so main is a required function in every c++ program, it's where your code begins and ends. cout is short for "console output" and is another function that's native to c++ that will display what you send onto the command line. the << symbol is a stream insertion operator and required for cout. {} tells the program to do all the code in between those two symbols whenever that function, in this case main, is called. endl is short for"end line" and tells cout to start writing to a new line. if you've written in other languages then it's very similar to a carriage return / line feed. Lastly, the semi colon marks the end of one instruction in the code.
0
are you saying you're unsure how to answer the questions in the hello world portion of the c++ tutorial?
0
yeah..like I want to undee stand what all those stuff like main, court into ect mean
0
yeah..like I want to undee stand what all those stuff like main, court into ect mean