C Program to Print 1 to 100 Using While Loop byAjay Kadtan •July 26, 2019 program: # include <stdio.h> int main () { int i= 1 ; while (i<= 100 ) { printf ( "%d " ,i); i++; } return 0 ; } output:
C Program to Print A to Z Alphabets using While Loop byAjay Kadtan •July 26, 2019 Program: # include <stdio.h> int main () { char ch= 'A' ; while (ch <= 'Z' ) { printf ( "%c " , ch); ch = ch+ 1 ; } return 0 ; } Output: Related Links: C program to…