Hi, habe folgendes C-file:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
struct hallo{
int telefonNummer;
};
main(){
struct hallo test;
test.telefonNummer=394875;
printf("%d", &test.telefonNummer);
}
compilieren funktioniert,
nach dem ausführen kommt folgende meldung:
./hans.c: line 6: struct: command not found
./hans.c: line 7: int: command not found
./hans.c: line 8: syntax error near unexpected token `}'
./hans.c: line 8: `};'
warum?
Bitte um schnelle hilfe
Optimus_Prime Gast |