Monday, 13 September 2021

How to print ASCII code the capital latter form A to Z use for loop.

#include<stdio.h>

int main()
{
	int caps;
	//use for loop to print the capital latter form A to Z
	
	for(caps = 65;caps<91;caps++)
	{
		printf("\nThe ASCII value of %c is %d",caps,caps);
		
	}
	return 0;
}











YouTub Video

 

No comments:

Post a Comment

Program to check whether the reverse string is a palindrome

  # include < stdio.h > # include < string.h > int main ( ) { //declare variables char str1 [ 30 ] ; int i , len...