What will be the correct syntax to assign an array named arr of 5 elements to a pointer ptr? (A) *ptr = arr ; (B) ptr = arr ; (C) *ptr = arr[5] ; (D) ptr = arr[5] ;â–ºCorrect Option Correct Option is: A