fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int x=153,b0,b1,b2,sum;
  6. b2=x/100;
  7. b1=(x-b2*100)/10;
  8. b0=x/10;
  9. printf("sum=%d\n,sum");
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
sum=-2046278584
,sum