fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. unsigned char a, b, c;
  5. a = 118;
  6. b = 143;
  7. c = a * b;
  8. printf("Size of datatype is %zu byte(s)\n", sizeof(unsigned char));
  9. printf("%u * %u = %u", a, b, c);
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
Size of datatype is 1 byte(s)
118 * 143 = 234