Multiple choice Which of the following statements is false regarding NULL pointer in Objective C? The NULL pointer can not be accessible by memory address. A NULL pointer does not have any memory pointer. int main () { int *ptr = NULL;NSLog(@"The value of ptr is : %xn", ptr ); return 0; } is the correct syntax for NULL pointer. The NULL pointer is a constant with a value of zero defined in several standard libraries. None of the above Reveal answer Fill a bubble to check yourself E Correct answer Explanation All are correct statements about NULL pointer n Objective C.