int main() { char *ptr = "GeeksQuiz"; printf("%c\n", *&*&*ptr); return 0; } (A) Compiler Error (B) Garbage Value (C) Runtime Error (D) G Answer: (D)… Read More
Tag Archives: C-Pointer Basics
Assume that float takes 4 bytes, predict the output of following program. #include <stdio.h> int main() { float arr[5] = {12.5, 10.0, 13.5, 90.5,… Read More