Follow This Blog For more... 😊

program to print ASCII VALUES/TABLE.| Using C language| C Program series 17|

👨‍💻Program to print ASCII VALUES/TABLE.

Code:


    //program to print ASCII VALUES/TABLE.
   
    #include<stdio.h>
    main()
    {
         printf("ASCII TABLE\t\t[NOTE:ASCII VALUES ARE REPESENTED IN BETWEEN | | THIS TWO LINES]\n\n");
         
         int i=0;
         
         while(i<=255)
         {
            printf("%d.|%c|\n",i,i);
            i++;
         }
    }

Output:










👉Click for more C Program series Questions.[Questions list]

Comments

Popular Posts