053. Technical interview question: Give the output of following code Prashant Chaudhari 7 years ago int main(void) { char *ptr = "Linux"; printf("\n [%c] \n",*ptr++); printf("\n [%c] \n",*ptr); return 0; }