Answers for "What is a while loop program in C to generate numbers from 0<25?"

C
0

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; 
} 
Posted by: Guest on May-09-2021

Code answers related to "What is a while loop program in C to generate numbers from 0<25?"

Code answers related to "C"

Browse Popular Code Answers by Language