Question: Derive Complexity function, Big Oh (0)notation and Running time for question 1 question 1 Here the number of rows can be assumed as 1000000 #include
Derive Complexity function, Big Oh (0)notation and Running time for question 1
question 1
Here the number of rows can be assumed as 1000000
#include
int main() {
int i, j, rows;
printf("Enter the number of rows: ");
scanf("%d", &rows);
for (i = 1; i <= rows; ++i) {
for (j = 1; j <= i; ++j) {
printf("* ");
}
printf(" ");
}
return o ;
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
