char zk[] = "All is great";
I have to write two possibilities printf commands to print out all is great, starting from third position. I have following:
1.
printf("%s\n", &zk[2]);
2.
for (int x = 2; x < strlen(zk); x++) printf("%c", zk[x]);
Both working for me, but I think i have to avoid a for loop, and just use the print command, is there any other way to print out All is great from the third position?