Monday, 13 September 2021

print all ASCII value in on Program ..

 

#include<stdio.h>
int main()
{
	int asciTable;
	
	printf("The complete ASCII table of the characters in the C");
	
	for(asciTable=0;asciTable<255;asciTable++)
	{
		printf("\n The value of '%c' charactor is:%d",asciTable,asciTable);
	}
	
	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...