Funny Wolfie Smilies Added !!! :Blep:

Come Learn C++ Together

Programming, hardware, software, etc. Anything to do with the nitty-gritty of computers goes here.
Post Reply
User avatar
zero
Site Admin
Posts: 22
Joined: Sun Mar 22, 2026 10:38 pm
Location: United States
Pronouns: Any
Contact:

Come Learn C++ Together

Post 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;
}
[Zero, Null, Jas, Clair, Hyacinth, Hyphen]
"genius. it creates energy clones of itself to gather resources, while the main body stays alert and safe. and if i attack, it can simply swap bodies with one of its clones."
User avatar
zero
Site Admin
Posts: 22
Joined: Sun Mar 22, 2026 10:38 pm
Location: United States
Pronouns: Any
Contact:

Re: Come Learn C++ Together

Post 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;

}
[Zero, Null, Jas, Clair, Hyacinth, Hyphen]
"genius. it creates energy clones of itself to gather resources, while the main body stays alert and safe. and if i attack, it can simply swap bodies with one of its clones."
Post Reply