Advertisement
flightcrank

challange_1_e

Apr 25th, 2012
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.67 KB | None | 0 0
  1. /*
  2. create a program that will ask the users name, age, and reddit username.
  3. have it tell them the information back, in the format:
  4.  
  5. your name is (blank), you are (blank) years old, and your username is (blank)
  6.  
  7. for extra credit, have the program log this information in a file to be accessed later.
  8. */
  9.  
  10.  
  11. #include <stdio.h>
  12.  
  13. int main() {
  14.  
  15.    
  16.     char name[20];
  17.     char user_name[20];
  18.     int age = -1;
  19.  
  20.     printf("Enter name: ");
  21.     scanf("%s",name);
  22.    
  23.     printf("Enter age: ");
  24.     scanf("%d",&age);
  25.    
  26.     printf("Enter user name: ");
  27.     scanf("%s",user_name);
  28.    
  29.     printf("your name is %s, you are %d years old, and your username is %s\n",name, age, user_name);
  30.  
  31.     return 0;
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement