fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. int main()
  4. {
  5. char name[50];
  6. char address[50];
  7. int age;
  8. printf("What's your name : ");
  9. scanf("%s",name);
  10. printf("Where are you :");
  11. scanf("%s ",address);
  12. printf("How old are you: ");
  13. scanf("%d",&age);
  14.  
  15. printf("-----------------\n");
  16. printf("Your information : \n");
  17. printf("Name: %s \n",name);
  18. printf("Age: %d \n",age);
  19. printf("From: %s \n",address);
  20. return 0;
  21. }
  22.  
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
What's your name : Where are you :How old are you: -----------------
Your information : 
Name: ɯ�e� 
Age: 0 
From: