C Programming Which of the following function calculates the square of 'x' in C? power(2, x) pow(x, 2) sqr(x) power(x, 2) pow(2, x) power(2, x) pow(x, 2) sqr(x) power(x, 2) pow(2, x) ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of following is not a valid name for a C variable? Examians None of these Both A and B Exam_veda Exam veda Examians None of these Both A and B Exam_veda Exam veda 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 6 11 10 9 5 6 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includevoid main(){ printf(5+"Good Morningn");} None of these M Good Morning Morning Good None of these M Good Morning Morning Good ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ int array[10]; int *i = &array[2], *j = &array[5]; int diff = j-i; printf("%d", diff);} 6 Garbage value 3 Error 6 Garbage value 3 Error ANSWER DOWNLOAD EXAMIANS APP
C Programming void main(){ int a=10, b; b = a++ + ++a; printf("%d %d %d %d", b, a++, a, ++a);}what will be the output when following code is executed? 22 11 11 11 22 13 14 14 22 12 12 13 12 10 11 13 22 14 12 13 22 11 11 11 22 13 14 14 22 12 12 13 12 10 11 13 22 14 12 13 ANSWER DOWNLOAD EXAMIANS APP