char arr[8] = "MONARCHY";
int n = 8;
for (int i = 0; i < n; i++) {
printf("%*c", 1 + !!i, arr[i]);
}
this prints M