fork download
  1. #include <stdio.h>
  2. int main ()
  3. {
  4. char a,b,c;
  5. int x,y;
  6. printf ("Enter three characters and two integers : ");
  7. scanf ("%c\t%c\t%c\t%d\t%d", a,b,c,x,y);
  8. printf ("Result : \n%c\n%c\n%c\n%d\n%d",a,b,c,x,y);
  9. return 0;
  10.  
  11.  
  12. }
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
Enter three characters and two integers : Result : 



0
0