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 0.01s 5288KB
stdin
Ahnaf
stdout
Enter Name: Your name is Ahnaf