Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.32 KB | None | 0 0
  1. Functions.c: In function ‘getLine’:
  2. Functions.c:7: warning: return makes integer from pointer without a cast
  3. Functions.c:7: warning: function returns address of local variable
  4.  
  5. #include <stdio.h>
  6.  
  7. char getLine() {
  8. char line[1000];
  9. scanf("%s", line);
  10.  
  11. return line;
  12. }
  13.  
  14. main() {
  15. /* more code to come here*/
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement