#include <stdio.h> void main(void){ char s1[6]="string"; int i; for(i=0;i<7;i++){ printf("%c",s1[i]); }}
Standard input is empty