Let's Explore C++!

C++ is like a super tool for creating amazing things with code. Let's start the adventure!

Check out this awesome code:

#include <iostream>


using namespace std;


int main()

{

  cout << "Hello, Young Coders!" << endl;

  return 0;

}

This code says "Hello" to all future programmers!

Let's Begin

What is C++?

C++ (say "C Plus Plus") is a powerful programming language used to make all sorts of amazing things!

Video Games

Many of your favorite games are made with C++! You could create your own game someday.

Software

Make cool programs for computers that can do amazing things.

Robots & Devices

Program robots, smart devices, and even some cars using C++!

Try Some Code!

counting-game.cpp

#include <iostream>


using namespace std;


int main()

{

  // Let's count to 5!

  for (int i = 1; i <= 5; i++)

  {

    cout << i << endl;

  }


  cout << "Let's count higher next time! 😎" << endl;

  return 0;

}

What does this code do?

Click the button to see the result!

C++ Quiz Time!

Test what you've learned with this fun quiz!

1. How do you say "C++" out loud?

2. What can you make with C++?

3. Which symbol is used to print text in C++?

Learn More!

Check out these awesome resources to become a C++ pro!

Stay Updated!

Get cool C++ tips and fun coding ideas sent to your email!

We'll never share your email. You can unsubscribe anytime!