C Programming
Array passed as an argument to a function is interpreted as

Number of element of the array.
Address of the first element of the array.
Address of the array.
Values of the first elements of the array.

ANSWER DOWNLOAD EXAMIANS APP

C Programming
What's wrong in the following statement, provided k is a variable of type int?for(k = 2, k <=12, k++)

The increment should always be ++k .
There should be a semicolon at the end of the statement.
The commas should be semicolons.
The variable must always be the letter i when using a for loop.
The variable k can’t be initialized.

ANSWER DOWNLOAD EXAMIANS APP