fork download
  1. #include<stdio.h>
  2. int main ()
  3. {
  4. int d,l,r;
  5. printf("Please enter three number:");
  6. scanf("%d %d %d",&d,&l,&r);
  7. printf("Your number forward:\n");
  8. printf("%d\n",d);
  9. printf("%d\n",l);
  10. printf("%d\n",r);
  11. printf("Your number reversed:\n");
  12. printf("%d\n",r);
  13. printf("%d\n",l);
  14. printf("%d\n",d);
  15. return 0;
  16. }
Success #stdin #stdout 0s 5272KB
stdin
Standard input is empty
stdout
Please enter three number:Your number forward:
21963
424166064
32766
Your number reversed:
32766
424166064
21963