Outside of punishment appeals, these forums have been archived.
We hope to see you on our Discord instead!
Discord has a minimum age, found here. You may need to wait, or ask a parent to handle tickets for you.
You are using an out of date browser. It may not display this or other websites correctly. You should upgrade or use an alternative browser.
Welcome to My First C++ Tutorial Today I will be show you the viewer how to make a basic C++ hello world console application!
#include <iostream> //The include statement is a way to incorporate different libraries into our code
//NOTE: WE MUST include iostream in our project
int main() {...