C Programming
What will be the output of the program ?#includevoid main(){ float arr[] = {12.4, 2.3, 4.5, 6.7}; printf("%d", sizeof(arr)/sizeof(arr[0]));}
None of these
void fun(int *p[4]){}
void fun(int *p[3][4]){}
void fun(int *p[][4]){}
void fun(int p[][4]){}
ANSWER
DOWNLOAD EXAMIANS APP
↑