fork download
  1. #include<stdio.h>
  2. #include<stdlib.h>
  3. int main()
  4. {
  5. int a;
  6. printf("enter the number:");
  7. scanf("%d" , &a);
  8.  
  9. printf("the number u entered is; %.d", a);
  10.  
  11. system("pause");
  12. }
Success #stdin #stdout #stderr 0s 5312KB
stdin
Standard input is empty
stdout
enter the number:the number u entered is; 32764
stderr
sh: 1: pause: not found