answersLogoWhite

0

#include<stdio.h>

main()

{

int a,i=1;

printf("Enter max no");

scanf("%d",&a);

do

{

printf("%d",i);

i=i+2;

}while(i<=a);

}

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

How do you loop a program in python 3?

A program can be looped in Python by wrapping the entire program in a for or while loop. If you wish to loop the program a finite amount of times, it can be done like so (x = the amount of times you want it to loop, this can be a number or variable storing a number): for i in range(0,x): [code] If you wish to loop the program infinitely, you can use a simple while loop: while True: [code]


What is the runtime complexity of a while loop in a program?

The runtime complexity of a while loop in a program is typically O(n), where n represents the number of iterations the loop performs.


Write a program using while loop?

//program to find the factorial value f any number using while loop #include&lt;stdio.h&gt; void main() { int i,n,fact=1; printf("Enter the number\n"); scanf("%d",&amp;n); i=n; while (i&gt;=1) { fact=fact*i; i--; } printf("The factorial value=%d",fact); } the above is a program for calculating tha factorial value of any number which is entered by the user


How do you write a program with do while loop so that the output is 123456 equals 720?

How do you write a program with do while loop so that the output is 123456 =720


What are the disadvantages of the While Loop?

With loops, your program is slower.


How can you write a c program using while loop that will print first ten odd numbers?

#include&lt;stdio.h&gt; int main () { int odd=1; int count=0; while (count++&lt;10) { printf (%d\n", odd); odd+=2; } return 0; }


Write a program to display 1 to n numbers using loop in oracle?

You can use a PL/SQL block to display numbers from 1 to n in Oracle. Here's an example program: DECLARE n NUMBER := 10; -- Change this value to your desired n BEGIN FOR i IN 1..n LOOP DBMS_OUTPUT.PUT_LINE(i); END LOOP; END; / This code declares a variable n, then uses a FOR loop to iterate from 1 to n, printing each number using DBMS_OUTPUT.PUT_LINE. Make sure to enable output in your SQL environment to see the results.


C program to print numbers 1 to n?

how do we use loops in c plus plus programing and what are basic differences between do,for and while loop


What loop should no execute if the test expression is false to begin with?

for loop and while loop need the expression to be true for further execution of the program.


Do while loop sum of n numbers write a c program?

#include&lt;stdio.h&gt; #include&lt;conio.h&gt; void main() { int a=n; do {for("a&lt;=n",%d); while {for ("a=n",number); getch(); }


C program algorithm for simple interest using while loop?

Not used


How do you loop a program in python?

An infinite loop might look something like: while 1==1: print("Infinite loop") as 1 is ALWAYS equal to 1.