fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. char a = 'a';
  5. printf("%zd\n", sizeof(char));
  6. printf("%zd\n", sizeof(a));
  7. printf("%zd\n", sizeof('a'));
  8. }
  9.  
  10. //https://pt.stackoverflow.com/q/178443/101
Success #stdin #stdout 0s 4300KB
stdin
Standard input is empty
stdout
1
1
4