how many times does the loop iterated ?
for (i=0;i=10;i+=2)
printf("Hi\n");

Answer Posted / rahul

infinite times

Is This Answer Correct ?    4 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the meaning of c in c language?

599


What is data structure in c language?

610


Find MAXIMUM of three distinct integers using a single C statement

628


i got 75% in all semester am i eligible for your company

1743


Write a program for finding factorial of a number.

637






Describe static function with its usage?

616


How can I find out if there are characters available for reading?

649


Why do we use return in c?

572


What are control structures? What are the different types?

602


Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor

2989


my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?

1124


Why we not create function inside function.

1753


What are the difference between a free-standing and a hosted environment?

747


When should we use pointers in a c program?

636


The program will first compute the tax you owe based on your income. User is prompted to enter income. Program will compute the total amount of tax owed based on the following: Income Tax 0 - $45,000 = 0.15 x income $45,001 - $90,000 = 6750 + 0.20 x (income – 45000) $90,001 - $140,000 = 15750 + 0.26 x (income – 90000) $140,001 - $200,000 = 28750 + 0.29 x (income – 140000) Greater than $200,000 = 46150 + 0.33 x (income – 200000) Dollar amounts should be in dollars and cents (float point numbers with two decimals shown). Tax is displayed on the screen.

1070