#include #include #include "conf.h" int main() { ptConf confChain = newConfChain(); addConf(confChain, "test", "tesst", 21, 120, 2023); printf("title : %s\nspeaker : %s\n", confChain -> title, confChain -> speaker); printDate(confChain -> date); return 0; }