+ 1

Hello i sajib. I want to understand the programming language, but I do not know anything in programming language

12th Dec 2017, 9:53 PM
sojib
sojib - avatar
6 odpowiedzi
+ 3
Why not you try the C++ tutorial? https://www.sololearn.com/Course/CPlusPlus/?ref=app
12th Dec 2017, 10:14 PM
blackcat1111
blackcat1111 - avatar
+ 3
Why not you try the HTML fundamental? https://www.sololearn.com/Course/html/?ref=app
12th Dec 2017, 11:02 PM
Amethyst Animion
Amethyst Animion - avatar
+ 2
Which part do you need help with?
12th Dec 2017, 10:57 PM
blackcat1111
blackcat1111 - avatar
+ 2
#include <iostream> using namespace std; int main() { cout << "Hello world!"; return 0; } I do not understand anything, please help me
12th Dec 2017, 11:02 PM
sojib
sojib - avatar
+ 2
#include <iostream> //You need this for everything; don't remove it unless you know what you're doing using namespace std; //See above; don't remove it unless you know what you're doing int main(){ //Everything your program does should be in here; don't forget the opening brace. cout << "Hello World"; //What you want to do in your program; this outputs "Hello World". Don't forget the semicolon! return 0; //End of program } //We had an opening brace, we must have a closing one. If you are still unsure of anything, feel free to ask.
12th Dec 2017, 11:20 PM
blackcat1111
blackcat1111 - avatar
+ 1
yes. i try it. I did not understand the system.
12th Dec 2017, 10:55 PM
sojib
sojib - avatar