#include <iostream>
using namespace std;
int main() {
    
    for(int i = 0; i < 10; i++) {
        //print a char including two spaces
       cout<<'  '<<endl;
        //output shows me 8224 
    }
    system("pause");
    return 0;
}
Here is the screenshot of the output
Why does it show me 8224?
 
    