C Programming If the two strings are identical, then strcmp() function returns -1 true None of these 1 0 -1 true None of these 1 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming The function scanf() returns ......... 1 0 ASCII value of the input read. The actual values read for each argument. The number of successful read input values. 1 0 ASCII value of the input read. The actual values read for each argument. The number of successful read input values. ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is used to find the first occurrence of a given string in another string? strrchr() strstr() strnset() None of these strchr() strrchr() strstr() strnset() None of these strchr() ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?int b=15, c=5, d=8, e=8, a;a = b>c ? c>d ? 12 : d>e ? 13 : 14 : 15;printf("%d", a); 15 Garbage Value 13 12 14 15 Garbage Value 13 12 14 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 III and IV I, III and IV I, II and III II and III I and II III and IV I, III and IV I, II and III II and III I and II ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function calculates the square of 'x' in C? pow(2, x) sqr(x) pow(x, 2) power(x, 2) power(2, x) pow(2, x) sqr(x) pow(x, 2) power(x, 2) power(2, x) ANSWER DOWNLOAD EXAMIANS APP