fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int n;
  6. printf("enter n=");
  7. scanf("%d",&n);
  8.  
  9. printf("the value is=%d",n);
  10.  
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0.01s 5324KB
stdin
Standard input is empty
stdout
enter n=the value is=32764