Developer Skill Test 0 Hours 0 Minutes 0 Seconds Step 1 of 6 16% Name* First Middle Last Email* Test Timer 1. What is the output of the following program?* #include main() { int x = 3; x += 2; x =+ 2; printf("%d", x); } A – 2 B – 5 C – 7 D – Compile error 2. What is the output of the below code snippet?* #include main() { for(1;2;3) printf("Hello"); } A – Infinite loop B – Prints “Hello” once. C – No output D – Compile error 3. What is the output of the following program?* #include int* f() { int x = 5; return &x; } main() { printf("%d", *f()); } A – 5 B – Address of ‘x’ C – Compile error D – Runtime error 4. What is the output of the following program?* #include enum {false, true}; int main() { int i = 1; do { printf("%d\n", i); i++; if (i < 15) continue; } while (false); getchar(); return 0; } A - 6 B - 1 C - 3 D - 4 5. Write a program that prints all odd numbers from 1 - 20. (Online compiler for C https://www.programiz.com/c-programming/online-compiler/)*