+ 1
Hello i sajib. I want to understand the programming language, but I do not know anything in programming language
6 Réponses
+ 3
Why not you try the C++ tutorial?
https://www.sololearn.com/Course/CPlusPlus/?ref=app
+ 3
Why not you try the HTML fundamental?
https://www.sololearn.com/Course/html/?ref=app
+ 2
Which part do you need help with?
+ 2
#include <iostream>
using namespace std;
int main()
{
cout << "Hello world!";
return 0;
}
I do not understand anything, please help me
+ 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.
+ 1
yes.
i try it.
I did not understand the system.