(clang) renamed C project to clang
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user