C Programming Which one of the following is not a reserved keyword for C? main case default auto register main case default auto register ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function calculates the square of 'x' in C? power(x, 2) sqr(x) pow(2, x) pow(x, 2) power(2, x) power(x, 2) sqr(x) pow(2, x) pow(x, 2) power(2, x) ANSWER DOWNLOAD EXAMIANS APP
C Programming The library function used to find the last occurrence of a character in a string is strnstr() None of these strstr() laststr() strrchr() strnstr() None of these strstr() laststr() strrchr() ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of given program?#includevoid main(){int a=1;if("%d=hello", a);} no error no output 0 1 complier error no error no output 0 1 complier error ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? Dennis Ritchie F. Codd Gosling Bjarne Stroustrup Dr. James Dennis Ritchie F. Codd Gosling Bjarne Stroustrup Dr. James ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ static int var = 5; printf("%d ", var--); if(var) main();} Infinite Loop 5 5 5 5 5 None of These 5 4 3 2 1 Infinite Loop 5 5 5 5 5 None of These 5 4 3 2 1 ANSWER DOWNLOAD EXAMIANS APP