#include int main() { int i; long l; long long ll; short s; char c; float f; double d; char feld[100]; char *zeiger = feld; printf("int ist %d Bytes groß.\n", sizeof(i) ); printf("long ist %d Bytes groß.\n", sizeof(l) ); printf("long long ist %d Bytes groß.\n", sizeof(ll) ); printf("short ist %d Bytes groß.\n", sizeof(s) ); printf("char ist %d Bytes groß.\n", sizeof(c) ); printf("float ist %d Bytes groß.\n", sizeof(f) ); printf("double ist %d Bytes groß.\n", sizeof(d) ); printf("char feld[100] ist %d Bytes groß.\n", sizeof(feld) ); printf("char *zeiger ist %d Bytes groß.\n", sizeof(zeiger) ); return 0; }