Cosa si intende per cambiare la routine principale? Il linguaggio di programmazione C

0

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; }
    
posta JimmyJackson 07.04.2014 - 15:03
fonte

1 risposta

2

Sì, il termine routine principale indica in genere la routine (funzione AKA, metodo, ecc.) denominata main , che è il punto di ingresso di un programma C. Da Wikipedia :

The main function serves a special purpose in C programs; the run-time environment calls the main function to begin program execution.

    
risposta data 07.04.2014 - 15:57
fonte

Leggi altre domande sui tag