fork download
  1. #include <stdio.h>
  2.  
  3. void hoge ()
  4. {
  5. unsigned char func = 255;
  6. printf("%d\n",func%8);
  7.  
  8.  
  9. }
  10.  
  11.  
  12. int main(void) {
  13. // your code goes here
  14. hoge();
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0s 5292KB
stdin
Standard input is empty
stdout
7