We started programming in School and need to fill a structure via a pointer but we get this error:
'Schueler' has no member named 'Schueler'
We are using eclipse Indigo with the MinGW Compiler.
#include <stdio.h>
int main()
{
    typedef struct Schueler{
        char Vorname[10];
        char Nachname[10];
    }Schueler;
    Schueler* vpName;
    char cSchuelerVName[10]="Hans";
    vpName->Schueler.Vorname=cSchuelerVName;
    return 0;
}
 
     
    