#include #include int * dupParameter(int x) { int * p = malloc(1 * sizeof(int)); if (p == NULL) { return NULL; } }