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