Hello, this is my first post on this forum.
Today, I was trying to work with language encoding, and after I've compiled the following program, the console output window appeared with a very small font, which makes the output unreadable.
#include <iostream>
#include <windows.h>
using namespace std;
int main()
{
SetConsoleOutputCP(1252);
cout << "Áá Çç!";
cin.get();
return 0;
}
I'm not sure if it directly related to this program or not, but I could not fix it in anyway, I've already tried uninstalling CodeBlocks. My cmd.exe still has a normal font size, and I even tried compiling a code on Dev-C++, and it also gives a normal output. I'm also attaching an image comparing CodeBlock's console output and cmd.exe to show the difference.
[attachment deleted by admin]