Ad Code

Responsive Advertisement

while loop of c language.


2) while loop :
 in while loop it have some condition first assign the value ,condition and than incremet or decrement.

 SYSNTEX :
       while(condition)
          {
                  // program(task)
          }


 example :
#include<stdio.h>  
 void main() 
         
        int a=1;        
       while(a<2)       
       {               
          printf(" well come to our website") ;             }    a++;
 }
 out put: well come to our website. 


❮ Previous                                                     Next ❯



❮ Previous                                                      Next ❯

Post a Comment

0 Comments