fork download
  1. #include <stdio.h>
  2. int main(void) {
  3. int x,y,z;
  4. x= sizeof (35);
  5. y=sizeof (3.56);
  6. z=sizeof ('a');
  7. printf ("%d %d %d",x,y,z);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0.01s 5308KB
stdin
Standard input is empty
stdout
4 8 4