Horje
What is a while loop program in C to generate numbers from 0<25? Code Example
What is a while loop program in C to generate numbers from 0<25?
#include <stdio.h>   
int main () {     
	/* local variable definition */    
    int a = 0;     
    
    /* while loop execution */    
    while( a < 25 ) {       
    printf("value of a: %d\n", a);       
    a++;    
    }     
    return 0; 
} 




C

Related
difference between %f and %lf Code Example difference between %f and %lf Code Example
ctest run specific test Code Example ctest run specific test Code Example
len of str vbs Code Example len of str vbs Code Example
how to belu-roll peoples in c Code Example how to belu-roll peoples in c Code Example
choose random number with weight Code Example choose random number with weight Code Example

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