Untitled
unknown
c_cpp
a month ago
218 B
3
Indexable
Never
#include <stdio.h> struct Film { double size; }; int main() { struct Film* my pointer; struct Film interstellar; interstellar.size = 123123.51241; my_pointer = &interstellar; return 0; }
Leave a Comment