Write a unix command to display the every character in the word "QUERYHOME" in new line.
Ex : Input - QUERYHOME output: Q U E R Y H O M E
#include<stdio.h> main() { char *p="QUERYHOME"; while(*p) printf("%c\n",*p++); }