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; 11 10 6 5 9 11 10 6 5 9 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is not a correct variable type? real double int float char real double int float char ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ int i=0, j=1, k=2, m; m = i++ || j++ || k++; printf("%d %d %d %d", m, i, j, k);} 0 1 2 3 1 1 2 3 None of these 1 1 2 2 0 1 2 2 0 1 2 3 1 1 2 3 None of these 1 1 2 2 0 1 2 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the return value of the following statement if it is placed in C program? strcmp("ABC", "ABC"); 33 0 Compilation Error 1 -1 33 0 Compilation Error 1 -1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the base data type of a pointer variable by which the memory would be allocated to it? No data type float unsigned int Depends upon the type of the variable to which it is pointing. int No data type float unsigned int Depends upon the type of the variable to which it is pointing. int ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the following code's output if choice = 'R'?switch(choice){ case 'R' : printf("RED"); case 'W' : printf("WHITE"); case 'B' : printf("BLUE"); default : printf("ERROR");break;} ERROR RED RED WHITE BLUE ERROR RED ERROR RED WHITE BLUE ERROR RED RED WHITE BLUE ERROR RED ERROR RED WHITE BLUE ANSWER DOWNLOAD EXAMIANS APP