Latest Others Aptitude Question SOLUTION: main() { int arr[]={1,2,3,4}; int *ptr ;;;; ptr++ = arr; printf("%d,%d",ptr[2],arr[2]); return 0; }