CExperiments/Objects/main.cpp

19 lines
236 B
C++
Raw Normal View History

2021-10-21 13:04:33 +00:00
#include <stdio.h>
extern "C" {
#include "objects.h"
#include "point.h"
}
int main() {
struct Point* p = new(Point, 2, 2);
printf("Read Point(%d,%d)\n", p->x, p->y);
delete(p);
return 0;
}