#include <stdio.h> int main() { char str[ ] = "WELCOME"; int i; for( i=0; i<6; i++) { printf("%c\n", str[i]); } return 0; }