Monday, 13 September 2021

How to print ASCII code the small latter form a to z use for loop.


#include<stdio.h> int main(){ int small; for(small =97;small<123;small++) { printf("\n The ASCII value of %c is %d",small, small); } 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...