fork download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. printf("%zu\n", sizeof(int));
  6. printf("%zu\n", sizeof('q'));
  7. printf("%zu\n", sizeof('qw'));
  8. printf("%zu\n", sizeof("qw"));
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 4408KB
stdin
Standard input is empty
stdout
4
4
4
3