GATE Computer Science (CS) 2017 Shift 2 Solved Paper
© examsiri.com
Question : 48 of 65
Marks:
+1,
-0
Consider the following C function.
Time complexity of fun in terms of Θ notation is
int fun(int n) {
int i, j;
for (i = 1; i < = n; i++) {
for (j = 1; j < n; j + = i) {
printf (‘’ %d %d’’, i, j);
}
}
}Time complexity of fun in terms of Θ notation is
Go to Question: