目前分類:C:選擇題 (2)

瀏覽方式: 標題列表 簡短摘要

Choose the correct execution result for following code:

#include <stdio.h>

int main(int argc, const char * argv[]) {
    
    int m = 12, n = 34;
    printf("%d%d", m, n);
    printf("%d%d\n", n, m);
    
    return 0;
}


 A. 12343412   B. 12341234   C. 12123434   D. 12343214

文章標籤

Will 發表在 痞客邦 留言(0) 人氣()

    The ASCII value for character '0' is 48.

文章標籤

Will 發表在 痞客邦 留言(0) 人氣()