Monday, 13 September 2021

How to print ASCII code the special characters use for loop.

 #include<stdio.h>

int main()
{
	int specialCh;
	
	for(specialCh=33;specialCh<48;specialCh++)
	{
		printf("\n The ASCII value of '%c' special character is:%d",specialCh,specialCh);
	}
	
	for(specialCh=58;specialCh<65;specialCh++)
	{
		printf("\n The ASCII value of '%c' special character is:%d",specialCh,specialCh);
	}
	
	for(specialCh=123;specialCh<127;specialCh++)
	{
		
		printf("\n The ASCII value of '%c' special character is:%d",specialCh,specialCh);
	}
	
	return 0;
}


YouTube 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...