chloejason9779 chloejason9779 25-01-2024 Computers and Technology contestada What will be the output of the program?#include#includeint main(){ int *p; p = (int *)malloc(20); /* Assume p has address of 1314 */ free(p); printf("%u", p); return 0;}