This commit is contained in:
Yorick Barbanneau 2023-04-17 23:40:08 +02:00
parent 4296f3a394
commit 553cdc440c
24 changed files with 919 additions and 0 deletions

View file

@ -0,0 +1,14 @@
#include <stdlib.h>
#include <stdio.h>
void f(char foo) {
printf("foo is %d\n", foo);
}
int main(void) {
char *c = malloc(10);
f(c[0]);
free(c);
return 0;
}