C Programming
Which of the following is correct way to define the function fun() in the below program?#includevoid main(){ int a[3][4]; fun(a);}

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

C Programming
"My salary was increased by 15%" Select the statement, which will EXACTLY reproduce the line of text above.

printf("My salary was increased by 15%!");
printf("My salary was increased by 15'%'!");
printf("My salary was increased by 15%%!");
printf("My salary was increased by 15/%!");

ANSWER DOWNLOAD EXAMIANS APP