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