3C科技 娛樂遊戲 美食旅遊 時尚美妝 親子育兒 生活休閒 金融理財 健康運動 寰宇綜合

Zi 字媒體

2017-07-25T20:27:27+00:00
加入好友
純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 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        

本文由jashliaoeuwordpress提供 原文連結

寫了 5860316篇文章,獲得 23313次喜歡
精彩推薦