C Programming Choose the correct output for the following program.#includevoid main(){ int a=10, b=11, c=13, d; d = (a=c, b+=a, c=a+b+c); printf("%d %d %d %d", d, a, b, c);} 50, 13, 24, 13 50, 13, 11, 13 13, 13, 24, 13 50, 13, 24, 50 13, 10, 24, 50 50, 13, 24, 13 50, 13, 11, 13 13, 13, 24, 13 50, 13, 24, 50 13, 10, 24, 50 ANSWER DOWNLOAD EXAMIANS APP
C Programming Any C program None of these Need not contain any function. Needs input data. Must contain at least one function. None of these Need not contain any function. Needs input data. Must contain at least one function. ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... First In First Out order Last In First Out order Random order Iterative order Parallel order First In First Out order Last In First Out order Random order Iterative order Parallel order ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#include#define a 10void main(){ #define a 50 printf("%d", a);} 10 Compiler Error None of These 50 10 Compiler Error None of These 50 ANSWER DOWNLOAD EXAMIANS APP
C Programming The function scanf() returns ......... 0 The actual values read for each argument. ASCII value of the input read. 1 The number of successful read input values. 0 The actual values read for each argument. ASCII value of the input read. 1 The number of successful read input values. ANSWER DOWNLOAD EXAMIANS APP
C Programming Comment on the following pointer declaration?int *ptr, p; ptr and p, both are pointers to integer. ptr is a pointer to integer, p is not. ptr and p both are not pointers to integer. ptr is pointer to integer, p may or may not be. ptr and p, both are pointers to integer. ptr is a pointer to integer, p is not. ptr and p both are not pointers to integer. ptr is pointer to integer, p may or may not be. ANSWER DOWNLOAD EXAMIANS APP