bsc

Comprehensive codebase and cou...
Log | Files | Refs | Activity | README | LICENSE

root / semester_1 / tuition-c / P058.c

P058.c (494B)


      1 /* WAP to display ASCII code of Alphabets (A - Z) using void displayASCII() */
      2 
      3 // This code has not been compiled.
      4 // If you find any issues, please create a new issue on GitHub regarding them.
      5 // Go to this link to create a new issue: https://github.com/notamitgamer/bsc/issues
      6 
      7 #include <stdio.h>
      8 
      9 void displayASCII()
     10 {
     11     int i;
     12     printf("ASCII Code\t\tCharacter");
     13     for (i = 'A'; i <= 'Z'; i++)
     14         printf("\n%c\t\t%d", i, i);
     15 }
     16 
     17 int main()
     18 {
     19     displayASCII();
     20     return 0;
     21 }
© notamitgamer • Site Built: 2026-09-05 01:53:16 UTC • git-mirror commit: c170d72 [view raw info]
Originally created with stagit • modified by notamitgamer
Forked from github.com/notamitgamer/git-mirror