C/C++ Arena

Step 1 of 6

Hello, C++

C++ grew out of C, so almost all your C knowledge carries over. The first visible difference is output. Instead of printf, C++ uses streams:

#include <iostream>

int main() {
    std::cout << "Kills: " << 25 << "\n";
}

Your turn: print Rounds won: 13 using cout.

Next: Reading with cin