Page 1 of 1

Come Learn C++ Together

Posted: Tue Mar 31, 2026 7:30 pm
by zero
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. :Upsidedown:

Code: Select all

#include <iostream>

int main() {
  std::cout << "Hello, world!\n";
  return 0;
}

Re: Come Learn C++ Together

Posted: Sun Apr 05, 2026 5:00 am
by zero
Progress was made :Wolf:
I'm on the second module now and i can code and compile simple programs.

Code: Select all

#include <iostream>

int main()
{

  std::cout << "Enter an integer: ";
  int x{};
  std::cin >> x;

  std::cout << "Enter another integer: ";
  int y{};
  std::cin >> y;

  std::cout << x << " + " << y << " is " << x + y << ".\n";
  std::cout << x << " - " << y << " is " << x - y << ".\n";

  return 0;

}