#include<stdio.h> #include <string.h> void main(){ int i; i = 0; char s[] = "Hello World"; for (i = 0;i < strlen(s);i++){ printf("%c",s[i]); } printf("\n"); }