mirror of
https://github.com/Astatin3/syscall-stream-rs.git
synced 2026-06-08 16:08:01 -06:00
9 lines
121 B
C
9 lines
121 B
C
#include <stdio.h>
|
|
|
|
const char line[] = "12345";
|
|
|
|
int main() {
|
|
printf("My pointer is: %p\n", *line);
|
|
return 0;
|
|
}
|