fork download
  1. #include<stdio.h>
  2.  
  3. int main(void){
  4. int v = 315;
  5. char s[8] = "";
  6. sprintf(s, "%04o", v);
  7. puts(s);
  8.  
  9. return 0;
  10. }
Success #stdin #stdout 0.02s 1720KB
stdin
Standard input is empty
stdout
0473