Does the terminal not like marked letters like č š ž etc.?

When printing the marked letters in a word the all seem a bit glitched up

You will need to set the locale std::setlocale - cppreference.com

So at the start of main

std::setlocale(LC_ALL, "thing here");

You may also need to use wide strings e.g.

std::wcout << L"with the l in front, this is a wide string\n";
//   ^ note the w

This topic was automatically closed 20 days after the last reply. New replies are no longer allowed.

Privacy & Terms