Learning by doing: Reading books and trying to understand the (code) examples
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
275 B

  1. #include <stdio.h>
  2. int main (void) {
  3. char first_name[20];
  4. char last_name[20];
  5. printf("Your first name: ");
  6. scanf("%s", first_name);
  7. printf("Your last name: ");
  8. scanf("%s", last_name);
  9. printf("Your name is %s, %s\n", last_name, first_name);
  10. return 0;
  11. }