C Programming The recursive functions are executed in a ........... Parallel order First In First Out order Random order Iterative order Last In First Out order Parallel order First In First Out order Random order Iterative order Last In First Out order 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));} Runtime error Syntax error 100 10012 g##g2 Runtime error Syntax error 100 10012 g##g2 ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... File scope Local scope Function scope No scope at all Block scope File scope Local scope Function scope No scope at all Block scope ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:#include#define clrscr() 100void main(){ clrscr(); printf("%dn", clrscr());} 1 0 Error 100 1 0 Error 100 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() strnset() strstr() None of these strchr() strrchr() strnset() strstr() None of these strchr() ANSWER DOWNLOAD EXAMIANS APP
C Programming The declarationint (*p) [5];means None of these. p is a pointer to a 5 elements integer array. p is one dimensional array of size 5, of pointers to integers. The same as int *p[ None of these. p is a pointer to a 5 elements integer array. p is one dimensional array of size 5, of pointers to integers. The same as int *p[ ANSWER DOWNLOAD EXAMIANS APP