This commit is contained in:
2025-12-01 11:43:22 +01:00
parent bee4a89873
commit 1e70a6407d
27 changed files with 805 additions and 38 deletions

9
pa-04/a1/main.c Normal file
View File

@@ -0,0 +1,9 @@
#include <stdio.h>
int main() {
printf("Der Datentyp char ist %d Byte lang.\n", sizeof(char));
printf("Der Datentyp int ist %d Byte lang.\n", sizeof(int));
printf("Der Datentyp long ist %d Byte lang.\n", sizeof(long));
printf("Der Datentyp float ist %d Byte lang.\n", sizeof(float));
printf("Der Datentyp double ist %d Byte lang.\n", sizeof(double));
return 0;
}