Character array introduction

time of the video is 3:05

sir actually i wanted to say that in case of integer array
when we declare an integer array and we perform cout
in the output first we get the address of the array and then the elements of the array so why we are getting the address first

@qudsiya thats the difference between integer and character arrays
when you cout integer array directly you get the starting address as int a[] a is the address of starting position. while in char array its a string so when you cout it it will display the string until a null character comes. thats just a difference you should know