1. What is the output of this C code? #include <stdio.h> int main() { char *p[1] = {”hello”}; printf(”%s”, (p)[0]); return 0; } a) Compile time error b) Undefined behaviour c) hello d) None of the mentioned AnswerAnswer: c [Reason:] None. 2. What is the output of this C code? #include <stdio.h> int main() {…