fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main(int argc, const char * argv[])
  5. {
  6.  
  7. printf("%d\n", sizeof('s')); // char
  8. printf("%d\n", sizeof('я')); // wchar_t
  9. printf("%d\n", sizeof(char));
  10. printf("%d\n", sizeof(wchar_t));
  11. return 0;
  12. }
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
1
4
1
4