InterviewSolution
Saved Bookmarks
| 1. |
Predict the output of following program. Assume that the characters are represented using ASCII Values.#include <stdio.h>#define VAL 32int main(){char arr[] = "geeksquiz";*(arr + 0) &= ~VAL;*(arr + 5) &= ~VAL;printf("%s", arr);return 0;}(A) GeeksQuiz(B) geeksQuiz(C) Geeksquiz(D) geeksquiz(E) Garbage eeks Garbage uiz |
| Answer» | |