C Programming Find the output of the following program.void main(){ int i=065, j=65; printf("%d %d", i, j);} 65 65 53 65 Syntax error 053 65 065 65 65 65 53 65 Syntax error 053 65 065 65 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"); }} 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 Run time error complier error ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the return value of the following statement if it is placed in C program? strcmp("ABC", "ABC"); Compilation Error 33 1 0 -1 Compilation Error 33 1 0 -1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program if the array begins at address 65486?#includevoid main(){ int arr[] = {12, 14, 15, 23, 45}; printf("%u, %u", arr, &arr);} 65486, 65488 65486, 65486 65486, 65490 None of these 65486, 65487 65486, 65488 65486, 65486 65486, 65490 None of these 65486, 65487 ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? Dennis Ritchie Dr. Gosling James F. Codd Bjarne Stroustrup Dennis Ritchie Dr. Gosling James F. Codd Bjarne Stroustrup ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed when this program is executed?int f(int x){ if(x <= 4) return x; return f(--x);}void main(){ printf("%d ", f(7)); } 4 1 2 3 4 Runtime error Syntax error 4 5 6 7 4 1 2 3 4 Runtime error Syntax error 4 5 6 7 ANSWER DOWNLOAD EXAMIANS APP