#include #include "Pq.h" struct contestant { char *name; int trust; }; void printTopKTrusted(struct contestant a[], int n, int k) { //TODO } int main(void) { struct contestant a[] = { {"Alice", 50}, {"Bob", 80}, {"Charlie", 30}, {"Dana", 90} }; printTopKTrusted(a, 4, 2); }