Monday, 13 September 2021

How to print ASCII code for given charactor by the user.

 

 #include<stdio.h>
 int main()
 {
 	char arr[30];//declare the size of character array
 	int count=0;//declare a count variable
 	
 	//enter any name to get the ascii codes
 	
 	printf("\nEnter the name to get the ASCII codes:");
 	scanf("%s",&arr);
 	
 	//use while loop to sequentially iterate every character of the array
 	
 	while(arr[count]!='\0')
 	{
 		//display the character name one by one 
 		
 		printf("\n The ascii code of the character %c is %d",arr[count],arr[count]);
 		
 		count++;//increment one by one
 		
	 }
	 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...