C Programming Determine Output:void main(){ int i; char a[]="�"; if(printf("%sn", a)) printf("Ok here n"); else printf("Forget itn");} None of These Ok here Error Forget it None of These Ok here Error Forget it ANSWER DOWNLOAD EXAMIANS APP
C Programming Identify the correct output of the following code:void main(){ int w=10, x=5, y=3, z=3; if( (w < x ) && (y=z++) ) printf("%d %d %d %d", w, x, y, z); else printf("%d %d %d %d", w, x, y, z);} 10 5 4 4 10 5 3 4 10 5 4 3 10 5 3 3 10 5 5 5 10 5 4 4 10 5 3 4 10 5 4 3 10 5 3 3 10 5 5 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of given program if user enter value 99?#includevoid main(){int i;printf("Enter a number:");scanf("%d", &i); // 99 is given as input.if(i%5 == 0){printf("nNumber entered is divisible by 5"); }} Run time error complier error Enter a number:99 Enter a number:99 Number is divisible by 5 Run time error complier error Enter a number:99 Enter a number:99 Number is divisible by 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming The default parameter passing mechanism is call by reference call by value result call by value None of these. call by reference call by value result call by value None of these. ANSWER DOWNLOAD EXAMIANS APP
C Programming Use of functions Enhances the logical clarity of the program. Helps to avoid repeating a set of statements many times. Helps to avoid repeated programming across programs. All of these Makes the debugging task easier. Enhances the logical clarity of the program. Helps to avoid repeating a set of statements many times. Helps to avoid repeated programming across programs. All of these Makes the debugging task easier. ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... Last In First Out order Parallel order First In First Out order Random order Iterative order Last In First Out order Parallel order First In First Out order Random order Iterative order ANSWER DOWNLOAD EXAMIANS APP