Files

9 lines
121 B
C
Raw Permalink Normal View History

#include <stdio.h>
const char line[] = "12345";
int main() {
printf("My pointer is: %p\n", *line);
return 0;
}