Вот мой хвост код (для первых 10 строк):Неожиданное нарушение Асесс чтение (хвост)
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
typedef char storage_datatype;
#define MAXLINESIZE 1000
#define STORAGESIZE 10000
#define MAXLINES 100
int mgetline(char*, int);
char* alloc(int n);
void cp(char*, char*);
char *lines[MAXLINES];
storage_datatype storage[STORAGESIZE];
storage_datatype *storagep = storage;
int main(int argc, char **argv) {
int space, i;
space = i = 0;
char line[MAXLINESIZE];
char* p;
while ((space = mgetline(line, MAXLINESIZE)) > 0) {
p = alloc(space);
cp(p, line);
lines[i++] = p;
}
i = 0;
while (i < 10) {
if (*lines[i]) {
printf("%s", lines[i++]);
}
}
getchar();
return 0;
}
int mgetline(char *s, int lim)
{
int c;
char *t = s;
while (--lim > 0 && (c = getchar()) != EOF && c != '\n')
*s++ = c;
if (c == '\n')
*s++ = c;
*s = '\0';
return s - t;
}
char* alloc(int n) {
if (storage + STORAGESIZE - storagep >= n) {
storagep += n;
return storagep - n;
}
else
return 0;
}
void cp(char *s, char *t) {
while ((*s++ = *t++));
}
Я получаю эту ошибку:
Access violation reading location 0x0000000000000000.
на этой линии:
if (*lines[i]) {
И я не могу понять, почему. Надеюсь, кто-то может мне это объяснить.
'пространства = mgetline (линия, MAXLINESIZE)> 0 '->' (пробел = mgetline (line, MAXLINESIZE))> 0' – BLUEPIXY
'if (* lines [i]) {' -> 'if (lines [i]) {' – BLUEPIXY
@BLUEPIXY Первый комментарий разумный. Но второй не имеет смысла? – Siliproksi