answersLogoWhite

0

What is odd loop in 'C' program?

Updated: 12/11/2022
User Avatar

Wiki User

12y ago

Best Answer

odd loop means at least the loop execute once.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is odd loop in 'C' program?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Write a c program Fibonacci series using for loop in java?

Exactly what do you mean by 'C program in Java'


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

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


How do you write a c program to design calculator using loop?

Wr


For loop program turbo c making a right triangle?

yes


How do you write a C program to check whether the number is odd or even Ps-using DEV complier?

To write a C program to determine if something is odd or even you need to be a programmer. To write a program in C is complicate and only done by programmers.


C program algorithm for simple interest using while loop?

Not used


Write a c or c plus plus program to print first 50 odd numbers using do while loop?

unsigned count = 0;unsigned num=1; do { std::cout << num << std::endl; num +=2; } while (++count<50);


Write 8085 assembly language program for BCD up counter and display using 8279?

loop: mvi c,59 dcr c mov a,c daa movc,a jnz loop end


What happens if you create a loop in C program that never ends?

then your program will never ends, too unless you pressing the ctrl+c or kill it through your os. can i know the purpose of you creating the loop that never ends? is it just a mistake or are you doing it on purpose?


Write a C Program to print sum of squares of odd numbers?

#include


Sum three real numbers using for loop in c program?

take input n chodo


How do you write a c program sum of ODD Numbers in the Given Range?

Reference: cprogramming-bd.com/c_page4.aspx#ODD%20 Numbers