C Programming The type of the controlling expression of a switch statement cannot be of the type ........ float char int long short float char int long short ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is used to find the first occurrence of a given string in another string? strstr() strrchr() strchr() strnset() None of these strstr() strrchr() strchr() strnset() None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Given b=110 and c=20, what is the value of 'a' after execution of the expression a=b-=c*=5? -110 10 110 450 -10 -110 10 110 450 -10 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#define square(x) x*xvoid main(){ int i; i = 64/square(4); printf("%d", i);} None of These 4 16 64 None of These 4 16 64 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which one of the following is not a reserved keyword for C? register default auto case main register default auto case main ANSWER DOWNLOAD EXAMIANS APP
C Programming What number will z in the sample code given below?int z, x=5, y= -10, a=4, b=2;z = x++ - --y*b/a; 10 9 5 11 6 10 9 5 11 6 ANSWER DOWNLOAD EXAMIANS APP