Hi, Im new to C and this is my first post here so please bear with me.
I have a little problem: I have this little program that prints the longest line, but I don't know how to provide input to it:
#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()) !=EOF && c!='\n'; ++i)
s = c;
if (c == '\n') {
s = c;
++i;
}
s = '\0';
return i;
}
void copy(char to[], char from[])
{
int i;
i = 0;
while ((to = from) != '\0')
++i;
}
Your help would be very appreciated.
I have a little problem: I have this little program that prints the longest line, but I don't know how to provide input to it:
#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()) !=EOF && c!='\n'; ++i)
s = c;
if (c == '\n') {
s = c;
++i;
}
s = '\0';
return i;
}
void copy(char to[], char from[])
{
int i;
i = 0;
while ((to = from) != '\0')
++i;
}
Your help would be very appreciated.