Initial commit

This commit is contained in:
theoleuthardt 2024-01-27 02:07:15 +01:00
commit 826d4c8c9d
81 changed files with 7268 additions and 0 deletions

18
uebung5/aufgabe1.c Normal file
View file

@ -0,0 +1,18 @@
#include <stdio.h>
int main(){
int i = 10;
int *j = &i;
char a = 'a';
char *b = &a;
double d = 9.23334;
double *e = &d;
printf("%p\n", j);
printf("%d\n", *j);
printf("%p\n", b);
printf("%c\n", *b);
printf("%p\n", e);
printf("%f\n", *e);
return 0;
}