#include int main(void) { int arr1[6]; int arr2[] = { 1,2,3,4,5,6}; char arr3[] = {'a', 'b', 'c', 'd'}; char arr4[6] = "hello"; return 0; }