What's the difference between lc (C) and c / ls (S) and s in printf()
function? Why does ls (S) conversion return -1?
Exemple :
printf("%C", 'ͳʹ); // -1
printf("%c", 'ͳʹ); // PRINT
printf("%S", "ͳ ans T"); // -1
printf("%s", "ͳ and T"); // PRINT
On mac..