fork download
  1. #include <stdio.h>
  2.  
  3. int main(){
  4. printf("%d\t",sizeof(6.5));
  5. printf("%d\t",sizeof(90000));
  6. printf("%d\t",sizeof('a'));
  7.  
  8. return 0;
  9. }
Success #stdin #stdout 0s 2052KB
stdin
Standard input is empty
stdout
8	4	4