#include main() { int i; char str[5] = "abcd"; printf("%s\n", str); for(i=0; i<=3; i++) printf("%c", str[i]); printf("\n"); return(0); }