fork download
  1. #include <stdio.h>
  2. #include <locale.h>
  3.  
  4. int test()
  5. {
  6. setlocale(LC_ALL, "RU");
  7. printf("Пока\n");
  8. }
  9.  
  10. int main()
  11. {
  12. printf("Привет");
  13. printf(test);
  14. }
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
ПриветP� @