Ciao a tutti,
sto imparando a programmare in C leggendo il libro "The C Programming Language 2nd edition" di K&R e mi sono bloccato in un punto.
codice:
#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 */
int main() {
int len, max;
char line[MAXLINE], 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; }
/* 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] = '\0';
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]) != '\0') {
++i; } }
Precisamente non ho capito perché all'inizio (dopo il #define) c'è int getline(char line[], int maxline);, mentre dopo cambia in int getline(char s[], int lim).
Scusate la domanda niubba. Ho cercato di capire, ma non ce l'ho fatta