fork(1) download
  1. #include <stdio.h>
  2. main()
  3. {
  4. int a, b ;
  5. a = sizeof(unsigned char) ;
  6. b = sizeof(unsigned short) ;
  7. printf(" Size of:\nUnsigned Char = %d\nUnsigned Short = %d\n", a, b) ;
  8. return 0 ;
  9. }
Success #stdin #stdout 0.01s 1676KB
stdin
Standard input is empty
stdout
 Size of:
Unsigned Char = 1
Unsigned Short = 2