Warum müssen wir werfen, was Malloc zurückgibt?

    int length = strlen(src);
    char *structSpace = malloc(sizeof(String) + length + 1);
    String *string = (String*) structSpace;    
    int *string = (int*) structSpace;

* Ich habe eine Struktur namens String erstellt

Antworten auf die Frage(7)

Ihre Antwort auf die Frage