HelloC/memfun.c
2023-11-25 19:27:12 +01:00

16 lines
258 B
C

#include <stdio.h>
#include <string.h>
int main() {
char c[7];
strcpy(c, "foobar");
printf("Hello World Foobar: %s\n", c);
for (char* i = c; i < c + 7; i++) {
printf("Mem address: %d\tContent: %c\n", i, *i);
}
return 0;
}