C Programming The recursive functions are executed in a ........... Iterative order Last In First Out order Parallel order Random order First In First Out order Iterative order Last In First Out order Parallel order Random order First In First Out order ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of following program code?#include int main(void){ char p; char buf[10] = {1, 2, 3, 4, 5, 6, 9, 8}; p = (buf + 1)[5]; printf("%d", p); return 0;} Error None of these 6 9 5 Error None of these 6 9 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming What number will z in the sample code given below?int z, x=5, y= -10, a=4, b=2;z = x++ - --y*b/a; 10 9 6 5 11 10 9 6 5 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is the correct way of declaring a float pointer: *float ptr; float ptr; None of these float *ptr; *float ptr; float ptr; None of these float *ptr; ANSWER DOWNLOAD EXAMIANS APP
C Programming In C programming language, which of the following type of operators have the highest precedence Equality operators Arithmetic operators Relational operators Logical operators Equality operators Arithmetic operators Relational operators Logical operators ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#includevoid main(){ char s[]={'a','b','c','n','c','\0'}; char *p, *str, *str1; p=&s[3]; str=p; str1=s; printf("%c", ++*p + ++*str1-32);} P N None of These M P N None of These M ANSWER DOWNLOAD EXAMIANS APP