Input
Output
#include<stdio.h> #include <string.h> void main(){ char a[14]={'h','e','l','l','o','\0'}; char b[]="programtpoint"; printf("Char Array Value for a is: %s\n", a); printf("String Literal Value For b is: %s\n", b); }