Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. char extRead (char AddressFile) {
  5. scanf("%s",AddressFile);
  6. return AddressFile;
  7. }
  8. int main ()
  9. {
  10. char AddressFile[120];
  11. extRead(AddressFile);
  12. printf("%s",AddressFile);
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement