fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. char name[30];
  6. printf("Enter Name: ");
  7. gets(name);
  8. printf("Your name is %s", name);
  9. return 0;
  10. }
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
Enter Name: Your name is �@