C Programming The function sprintf() works like printf(), but operates on .......... no such function in 'C'. stdin Data file string stderr no such function in 'C'. stdin Data file string stderr ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includeint main(){ int arr[1] = {10}; printf("%d", 0[arr]); return 0;} 1 None of these 6 10 0 1 None of these 6 10 0 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, II and III II and III I, III and IV I and II III and IV I, II and III II and III I, III and IV I and II III and IV ANSWER DOWNLOAD EXAMIANS APP
C Programming Consider the following program fragment, and choose the correct onevoid main(){ int a, b = 2, c; a = 2 * (b++); c = 2 * (++b);} b = 3, c = 6 a = 4, c = 8 b = 4, c = 6 a = 3, c = 8 a = 4, c = 6 b = 3, c = 6 a = 4, c = 8 b = 4, c = 6 a = 3, c = 8 a = 4, c = 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following operator takes only integer operands? * + None of these % / * + None of these % / ANSWER DOWNLOAD EXAMIANS APP
C Programming An array elements are always stored in ________ memory locations. Sequential and Random Random Sequential None of these Sequential and Random Random Sequential None of these ANSWER DOWNLOAD EXAMIANS APP