C++ is one of the most compaclationed languages (yes a language) to learn. The most basic line of code is: ''' #include <iostream> using namespace std; int main() { cout << "Hello World"; } ''' that was very simple. The output would be Hello World. The first line #include <iostream> means to print text. Using namespace (the next line) is to...continued
c++ introduction
C++ is one of the most compaclationed languages (yes a language) to learn. The most basic line of code is:
'''
#include <iostream>
using namespace std;
int main() {
cout << "Hello World";
}
'''
that was very simple. The output would be Hello World. The first line #include <iostream> means to print text. Using namespace (the next line) is to...continued
@LiamDonohue -_- technically if they had explained more in-depth, then it would have been "waay complicated". :(