Consider the C Programming
#include<stdio.h>
void print (int n) {
if (n <= 0) return;
print(n--);
printf ("%d", n);
}
int main() {
print(5);
return 0;
}
#include<stdio.h>
void print (int n) {
if (n <= 0) return;
print(n--);
printf ("%d", n);
}
int main() {
print(5);
return 0;
}
Output will be?
Anonymous Quiz
41%
5, 4, 3, 2 , 1
19%
1, 2, 3, 4, 5
24%
Abnormal Terminate
16%
Error
Consider the following sample of numbers: 9, 18, 11, 14, 15, 17, 10, 69, 11, 13 The median of the sample is
(a) 14
(b) 13.5
(c) 12
(d) 11
(a) 14
(b) 13.5
(c) 12
(d) 11