I have freebsd FreeBSD 9.1. I am going through the book and doing everything on the command line. I am on section 1.9 with arrays. The program is:
The program gets lines of input and puts the longest one in the array and then prints it. I type my strings and hit ctrl-d to do an EOF but the program just exits to the prompt and nothing is displayed. Is there a different way to do EOF that the book is dated on? Thank you.
Code:
#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 = getline(line, MAXLINE)) > 0);
if (len > max) {
max = len;
copy(longest, line);
}
if (max > 0)
printf("%s", longest);
return 0;
}
int getline(char s[], int lim)
{
int c, i;
for (i = 0; i < lim-1 && (c = getchar()) 1= 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;
}