C Programming Which of the following function calculates the square of 'x' in C? sqr(x) pow(2, x) power(2, x) power(x, 2) pow(x, 2) sqr(x) pow(2, x) power(2, x) power(x, 2) pow(x, 2) ANSWER DOWNLOAD EXAMIANS APP
C Programming int a[5] = {1,2,3}What is the value of a[4]? 3 0 Garbage Value 1 2 3 0 Garbage Value 1 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=10; i=!i>14; printf("i=%d", i);} 0 10 1 14 0 10 1 14 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 0 100 5 0 20 100 100 100 5 0 100 100 5 100 100 0 100 5 0 20 100 100 100 5 0 100 100 5 100 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator from the following has the lowest priority? Conditional operator Assignment operator Unary-operator Comma operator Division operator Conditional operator Assignment operator Unary-operator Comma operator Division operator ANSWER DOWNLOAD EXAMIANS APP
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 I, II and III III and IV II and III I, III and IV I and II I, II and III III and IV II and III I, III and IV ANSWER DOWNLOAD EXAMIANS APP