By : Ntpr centre - April 29 , 2022
Welcome to your C language
June 3, 2023
int main(){ int i,j,k,count;count=0;for(i=0;i<5;i++){for(j=0;j<5;j++) { count++; } } printf("%d",count); return 0; }
a. while(condition) { //statements }b. { //statements } while(condition)c. while(condition); { //statements }d. while() { if(condition) { //statements } }
Time is Up!
Time's up