このコード出力の異常な動作を理解できません。それは印刷します:
hellooo
monusonuka
コードはここにあります:
#include <iostream>
#include <cstdio>
using namespace std;
int main()
{
printf(" hellooo \n");
char name[7]="sonuka";
char name1[4]={'m','o','n','u'};
printf("%s",name1);
system("pause");
return 0;
}