Yatendra AwanaOct 28, 20211 min readwhile loop in c programmingProgram to print numbers from 1 to 10 using while loop#include<stdio.h>int main(void){ int i=1; while(i<=10) { printf("%d\t",i); i = i+1; } printf("\n"); return 0;}
Program to print numbers from 1 to 10 using while loop#include<stdio.h>int main(void){ int i=1; while(i<=10) { printf("%d\t",i); i = i+1; } printf("\n"); return 0;}
Program to find biggest number from three given numbersProgram to find biggest number from three given numbers