C Programming In C programming language, which of the following type of operators have the highest precedence Relational operators Logical operators Equality operators Arithmetic operators Relational operators Logical operators Equality operators Arithmetic operators ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ static int i=5; if(--i){ main(); printf("%d ", i); }} Infinite Loop None of These 0 0 0 0 5 4 3 2 1 Infinite Loop None of These 0 0 0 0 5 4 3 2 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming The library function used to find the last occurrence of a character in a string is strstr() None of these strnstr() strrchr() laststr() strstr() None of these strnstr() strrchr() laststr() ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ extern int i; i=20; printf("%d", sizeof(i));} 20 2 Linker Error Compiler Error 20 2 Linker Error Compiler Error ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the base data type of a pointer variable by which the memory would be allocated to it? int float Depends upon the type of the variable to which it is pointing. unsigned int No data type int float Depends upon the type of the variable to which it is pointing. unsigned int No data type ANSWER DOWNLOAD EXAMIANS APP
C Programming The output of the following program is:#define f(g,g2) g##g2void main(){ int var12=100; printf("%d", f(var,12));} Syntax error g##g2 100 10012 Runtime error Syntax error g##g2 100 10012 Runtime error ANSWER DOWNLOAD EXAMIANS APP