#include <stdio.h> int main () { char arr1[]="abd"; char arr2[]={'a','b','d','\0'}; printf("%s\n",arr1); printf("%s\n",arr2); return 0; }