Rearrange the following code so that it forms a correct program that prints out the letter Q:
LANGUAGE: C++
CHALLENGE:
Rearrange the following code so that it forms a correct program that prints out the letter Q:
SOLUTION:
#include <iostream> using namespace std; int main(){ cout << "Q"; return 0; }
Posted in C++, Learn To Code