fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4.  
  5. int a;
  6.  
  7. printf("Enter the value of a :\n ");
  8. scanf("%d", &a);
  9.  
  10.  
  11.  
  12.  
  13. printf("Value of a : %d\n", a);
  14.  
  15. return 0;
  16. }
Success #stdin #stdout 0s 5320KB
stdin
909
stdout
Enter the value of a :
 Value of a : 909