#include <stdio.h>
int main0202(){
char c []={'G','o','d','o','r','o'};
printf("%c%c%c%c%c%c\n",
c[0],c[1],c[2],c[3],c[4],c[5]);
char t []={'G','o','d','o','r','o','\0'};
printf("%s\n",t);
char s[]="Godoro";
printf("%s\n",s);
return 0;
}
Dosyayı İndir