純C 印出 ASCII TABLE(ASCII CODE)

純C 印出 ASCII TABLE(ASCII CODE)

純C 印出 ASCII TABLE(ASCII CODE)

 

資料來源:http://stackoverflow.com/questions/27054414/printing-all-the-ascii-values-in-c-c
線上執行:http://codepad.org / http://www.tutorialspoint.com/compile_c_online.php

 

#include <stdio.h>

int main()
{
    int i;
    int j=0;
    for(i = 0; i <= 255; i++)
    {
        if(i<=13)
            printf(“[%d]\t[%x]\t%c\n”, i, i,i);
        else
            printf(“[%d]\t[%x]\t%c\t\t”, i, i,i);
        j++;
        if(j==2)
        {
            j=0;
            printf(“\n”);
        }
    }
    return 0;
}

 

之後的查詢結果~ http://codepad.org/WCfsaHnH

 

 

 

 

發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *