I am trying to print:
printf("rlstats (1.0.0), © 2020 name \nEnter a list of comma - separated real number pairs terminated by EOF or non numeric input.\n");
but the © isnt printing, how would I do about this? is there a code for it?
I am trying to print:
printf("rlstats (1.0.0), © 2020 name \nEnter a list of comma - separated real number pairs terminated by EOF or non numeric input.\n");
but the © isnt printing, how would I do about this? is there a code for it?
Instead of using © directly, you should use the corresponding unicode \u00A9
You can try wprintf
:
wprintf(L"rlstats (1.0.0), © 2020 name\n");
wprintf(L"Enter a list of comma-separated real number pairs terminated by EOF or non-numeric input.\n");