C Programming
What will be the output of the given program?#includevoid main(){int a=11,b=5;if(a=5) b++;printf("%d %d", ++a, b++);}
void fun(int p[][4]){}
void fun(int *p[4]){}
void fun(int *p[][4]){}
void fun(int *p[3][4]){}
None of these
ANSWER
DOWNLOAD EXAMIANS APP
↑