Files
Fabio Scotto di Santolo 538cb4559e Renaming all folders
2025-08-22 16:21:42 +02:00

13 lines
208 B
C

#include <stdio.h>
int main(void) {
char greeting[] = "Ahoy Matey";
char *c = greeting[1];
unsigned long badnews = *(unsigned long *)c;
printf("%s\n", c);
printf("%lu\n", badnews);
return 0;
}