1
0

useheader.c 302 B

123456789101112131415
  1. // useheader.c -- use the names_st structure
  2. #include <stdio.h>
  3. #include "names_st.h"
  4. // remember to link with names_st.c
  5. int main(void)
  6. {
  7. names candidate;
  8. get_names(&candidate);
  9. printf("Let's welcome ");
  10. show_names(&candidate);
  11. printf(" to this program!\n");
  12. return 0;
  13. }