1. What is the output of this C code? #include <stdio.h> int main() { int ary[4] = {1, 2, 3, 4}; printf(”%dn”, *ary); } a) 1 b) Compile time error c) Some garbage value d) Undefined variable AnswerAnswer: a [Reason:] None. 2. What is the output of this C code? #include <stdio.h> int main() {…