C Programming Let x be an array. Which of the following operations are illegal?I. ++xII. x+1III. x++IV. x*2 I and II II and III I, III and IV III and IV I, II and III I and II II and III I, III and IV III and IV I, II and III ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is not a correct variable type? double real char float int double real char float int 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 unsigned int float int Depends upon the type of the variable to which it is pointing. No data type unsigned int float int Depends upon the type of the variable to which it is pointing. ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){int value1, value2=100, num=100;if(value1=value2%5) num=5;printf("%d %d %d", num, value1, value2);} 100 5 100 5 0 100 100 100 100 100 0 100 5 0 20 100 5 100 5 0 100 100 100 100 100 0 100 5 0 20 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i = abc(10); printf("%d", --i);}int abc(int i){ return(i++);} 11 9 None of These 10 11 9 None of These 10 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);} 1 1 2 2 0 1 2 3 0 1 2 2 None of these 1 1 2 3 1 1 2 2 0 1 2 3 0 1 2 2 None of these 1 1 2 3 ANSWER DOWNLOAD EXAMIANS APP