Nell'esercizio 1-16 in The C Programming Language (K & R) ci chiede di: rivedere la routine principale del programma a più lunga durata in modo che stampi correttamente la lunghezza di linee di input lunghe e arbitrarie e quanto più possibile del testo.
Da ciò che ho letto qui , ho capito che la routine principale è tutto all'interno di main
, è corretto? Ho postato il codice per il programma di più lunga durata di seguito per più contesto, ma sono confuso mio ciò che mi viene chiesto di non fare il codice. Grazie!
#include <stdio.h>
#define MAXLINE 1000 /* maximum input line length */
int getline( char line[], int maxline );
void copy( char to[], char from[] );
/* print the longest input line */
main()
{
int len; /* current line length */
int max; /* maximum length seen so far */
char line[MAXLINE]; /* current input line */
char longest[MAXLINE]; /* longest line saved here */
max = 0;
while (( len = getline( line, MAXLINE )) > 0)
if ( len > max ) {
max = len;
copy( longest, line );
}
if ( max > 0 )
printf( "%s", longest );
return 0;
}
/* getline: read a line into s, return length */
int getline( 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] = '#include <stdio.h>
#define MAXLINE 1000 /* maximum input line length */
int getline( char line[], int maxline );
void copy( char to[], char from[] );
/* print the longest input line */
main()
{
int len; /* current line length */
int max; /* maximum length seen so far */
char line[MAXLINE]; /* current input line */
char longest[MAXLINE]; /* longest line saved here */
max = 0;
while (( len = getline( line, MAXLINE )) > 0)
if ( len > max ) {
max = len;
copy( longest, line );
}
if ( max > 0 )
printf( "%s", longest );
return 0;
}
/* getline: read a line into s, return length */
int getline( 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] = '%pre%';
return i;
}
/* copy: copy 'from' into 'to'; assume to is big enough */
void copy( char to[], char from[] )
{
int i;
i = 0;
while ( (to[i] = from[i] ) != '%pre%' )
++i;
}
';
return i;
}
/* copy: copy 'from' into 'to'; assume to is big enough */
void copy( char to[], char from[] )
{
int i;
i = 0;
while ( (to[i] = from[i] ) != '%pre%' )
++i;
}