C Programming Determine Output:void main(){ char *p; printf("%d %d", sizeof(*p), sizeof(p));} 2 2 2 1 1 2 1 1 2 2 2 1 1 2 1 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... Iterative order First In First Out order Parallel order Last In First Out order Random order Iterative order First In First Out order Parallel order Last In First Out order Random order 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++);} 6 6 11 6 6 7 12 7 5 6 6 6 11 6 6 7 12 7 5 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){int value1, value2=100, num=100;if(value1=value2%5) num=5;printf("%d %d %d", num, value1, value2);} 5 0 20 5 0 100 100 5 100 100 0 100 100 100 100 5 0 20 5 0 100 100 5 100 100 0 100 100 100 100 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includevoid main(){ printf(5+"Good Morningn");} Morning None of these Good Morning Good M Morning None of these Good Morning Good M 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? 7 12 It will not compile because not enough initializers are given 24 6 7 12 It will not compile because not enough initializers are given 24 6 ANSWER DOWNLOAD EXAMIANS APP