i know that the array name could be used as a pointer(although it\'s a converted form), but my question is , Is there some other instance where array acts as a pointer.
Arrays in C are basically just pointers that reserve consecutive blocks of memory. So in essence arrays always act like pointers.