Come Learn C++ Together
Posted: Tue Mar 31, 2026 7:30 pm
I'm learning C++ and it'd be nice to talk about it with others in sort of a study-group type of setting. I have a bit of familiarity with programming in other languages like python and HTML+CSS+JS but wanted to actually learn how to write my own software from scratch so i can make whatever i want.
I'm using this resource for learning step-by-step
https://www.learncpp.com
If anyone stumbling across this topic has other resources that could be helpful toss them my way, anything helps.
I'm using this resource for learning step-by-step
https://www.learncpp.com
If anyone stumbling across this topic has other resources that could be helpful toss them my way, anything helps.
Code: Select all
#include <iostream>
int main() {
std::cout << "Hello, world!\n";
return 0;
}