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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!