C Programming The recursive functions are executed in a ........... Random order Parallel order Last In First Out order First In First Out order Iterative order Random order Parallel order Last In First Out order First In First Out order Iterative order ANSWER DOWNLOAD EXAMIANS APP
C Programming short testarray[4][3] = { {1}, {2,3}, {4,5,6}};printf("%d", sizeof(testarray));Assuming a short is two bytes long, what will be printed by the above code? 24 7 6 It will not compile because not enough initializers are given 12 24 7 6 It will not compile because not enough initializers are given 12 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){int a=11,b=5;if(a=5) b++;printf("%d %d", ++a, b++);} 11 6 5 6 6 7 12 7 6 6 11 6 5 6 6 7 12 7 6 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming The function sprintf() works like printf(), but operates on .......... stdin string stderr Data file no such function in 'C'. stdin string stderr Data file no such function in 'C'. ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includevoid main(){ printf(5+"Good Morningn");} None of these Good M Good Morning Morning None of these Good M Good Morning Morning ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ static char *s[] = {"black", "white", "yellow", "violet"}; char **ptr[] = {s+3, s+2, s+1, s}, ***p; p = ptr; ++p; printf("%s",*--*++p + 3); } ow te ck et ow te ck et ANSWER DOWNLOAD EXAMIANS APP