Horje
converting a for loop to a while loop C++ Code Example
converting a for loop to a while loop C++
#include<stdio.h>

main()
{


    int a,x;
    for (a=640; x>5;a/=2)
        {
        x = a/2;
    printf("\n%d divided by 2 is equal %d", a,x);

        }
return 0;
}





Cpp

Related
Get rid of those includes c++ Code Example Get rid of those includes c++ Code Example
forkortelse for intet Code Example forkortelse for intet Code Example
std::string(size_t , char ) constructor: Code Example std::string(size_t , char ) constructor: Code Example
int and char in c++ compiler Code Example int and char in c++ compiler Code Example
c++ clamp Code Example c++ clamp Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8