#include void main(void) { char chArray[11] = "sweet corn"; int iIndex; for(iIndex = 0; iIndex <= 9; iIndex = iIndex + 1) printf("%c", chArray[iIndex]); printf("\n"); }