fill the table at run time

Nasza ocena:

3
Wyświetleń: 546
Komentarze: 0
Notatek.pl

Pobierz ten dokument za darmo

Podgląd dokumentu
fill the table at run time - strona 1

Fragment notatki:

fill the table at run time char *name[4]; /* an array of 4 pointers to characters */ name[0] = (char*) malloc(strlen("Illegal month")+1); if (name[0]==NULL) fprintf(stderr,"Out of memory\n"); else strcpy(name[0],"Invalid month"); name[1] = (char*) malloc(strlen("Jan")+1); if (name[1]==NULL) fprintf(stderr,"Out of memory\n"); else strcpy(name[1],"Jan"); ... zobacz całą notatkę



Komentarze użytkowników (0)

Zaloguj się, aby dodać komentarz