C Programming The library function used to find the last occurrence of a character in a string is laststr() strstr() strrchr() None of these strnstr() laststr() strstr() strrchr() None of these strnstr() ANSWER DOWNLOAD EXAMIANS APP
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 What will be output if you will compile and execute the following c code?#include#define max 5void main(){ int i = 0; i = max++; printf("%d", i++);} 5 0 6 7 Compiler Error 5 0 6 7 Compiler Error 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 Determine Output:main(){ char *str1 = "abcd"; char str2[] = "abcd"; printf("%d %d %d", sizeof(str1), sizeof(str2), sizeof("abcd"));} 2 4 4 2 4 5 2 5 5 8 5 5 2 4 4 2 4 5 2 5 5 8 5 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming C was primarily developed as System programming language None of these Data processing language General purpose language System programming language None of these Data processing language General purpose language ANSWER DOWNLOAD EXAMIANS APP