fork(1) download
  1. #include <stdio.h>
  2. void main()
  3. {
  4. int a, b;
  5. float x, y;
  6. char c1, c2;
  7. scanf("a=%d b=%d",&a,&b);
  8. scanf(" %f %e",&x,&y);
  9. scanf(" %c, %c",&c1,&c2);
  10. printf("a=%d,b=%d,x=%f,y=%f,c1=%c,c2=%c\n",a,b,x,y,c1,c2);
  11. }
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
a=804606256,b=21915,x=0.000000,y=0.000000,c1=,c2=