#include <stdio.h> int main() { char ch[2]={'a','\0'}; char ch2[3]={'c','d','e'}; printf("%s\n",ch2); return 0; }