fork download
  1. #include <stdio.h>
  2.  
  3. main(void) {
  4. // your code goes here
  5. int i,j;
  6. float aa;
  7. char cc, dd[10];
  8. scanf("%c\n",&cc);
  9. scanf("%d, %o", &i,&j);
  10. scanf("%f",&aa);
  11. scanf("%s",dd);
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0.01s 5288KB
stdin

stdout
Standard output is empty