C Programming Find the output of the following program.void main(){ int array[10]; int *i = &array[2], *j = &array[5]; int diff = j-i; printf("%d", diff);} 6 Garbage value 3 Error 6 Garbage value 3 Error ANSWER DOWNLOAD EXAMIANS APP
C Programming The statement int **a; is legal but meaningless is syntactically and semantically correct None of these. is illegal is legal but meaningless is syntactically and semantically correct None of these. is illegal ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#define prod(a,b) a*bvoid main(){ int x=3, y=4; printf("%d", prod(x+2, y-1));} 11 12 15 10 11 12 15 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming String concatenation means - Partitioning the string into two strings. Merging two strings. Combining two strings. Comparing the two strings to define the larger one. Extracting a substring out of a string. Partitioning the string into two strings. Merging two strings. Combining two strings. Comparing the two strings to define the larger one. Extracting a substring out of a string. 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 In an expression involving || operator, evaluationI. Will be stopped if one of its components evaluates to falseII. Will be stopped if one of its components evaluates to trueIII. Takes place from right to leftIV. Takes place from left to right I and II II and III III and IV I and III II and IV I and II II and III III and IV I and III II and IV ANSWER DOWNLOAD EXAMIANS APP