In K&R Chapter 1.9, I've been experimenting with the program provided below. Particularly, what would happen if I removed certain decelerations of functions.
So, I removed line #4. int getline(char line[], int maxline
And the program complies perfectly and functions properly as far as I'm aware.
When I remove line #5. void copy(char to[], char from[]);
The program throws the following error:
yay.c:37:6: warning: conflicting types for ‘copy’ void copy(char to[], char from[])
yay.c:15:9: note: previous implicit declaration of ‘copy’ was here copy(longest, line);
#include <stdio.h>
#define MAXLINE 1000
int getline(char line[], int maxline);
void copy(char to[], char from[]);
main()
{
int len;
int max;
char line[MAXLINE];
char longest[MAXLINE];
max = 0;
while ((len = getfatline(line, MAXLINE)) > 0)
if (len > max) {
max = len;
copy(longest, line);
}
if (max > 0)
printf("%s", longest);
return 0;
}
int getfatline(char s[], int lim)
{
int c, i;
for (i=0; i<lim-1 && (c=getchar()) !=EOF && c != '\n'; ++i)
s[i] = c;
if (c == '\n') {
s[i] = c;
++i;
}
s[i] = '\0';
return i;
}
void copy(char to[], char from[])
{
int i;
i = 0;
while ((to[i] = from[i]) != '\0')
++i;
}
Could anyone explain this to me?