(clang) renamed C project to clang

This commit is contained in:
scbj
2026-01-09 14:01:23 +01:00
parent a08e7d979c
commit faecef25ce
3 changed files with 0 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#include <stdio.h>
int main(void)
{
const void* pointer = (void*)(1000);
printf("original pointer = %p\n", pointer);
pointer = NULL;
printf("changed pointer = %p\n", pointer);
return 0;
}