fork download
  1. #include <stdio.h>
  2. int main() {
  3. printf("%0*d\n", 0, 0);
  4. printf("%0*d\n", 1, 0);
  5. printf("%0*d\n", 2, 0);
  6. return 0;
  7. }
  8.  
Success #stdin #stdout 0s 5424KB
stdin
Standard input is empty
stdout
0
0
00