C Programming
char *ptr;char myString[] = "abcdefg";ptr = myString;ptr += 5;what string does ptr point to in the sample code above?
void fun(int *p[3][4]){}
void fun(int p[][4]){}
None of these
void fun(int *p[][4]){}
void fun(int *p[4]){}
ANSWER
DOWNLOAD EXAMIANS APP
↑