#include <stdio.h> #include "point.h" #include "point_utils.h" int main(int argc, char* argv[]) { Point p = new_point(); printf("x: %d, y: %d\n", p.x, p.y); return 0; }
Pointers, double pointers, pointer arithmetics, dereferencing, everything in a short and compact guide that you can reference anytime!