//p22.c -- @CopyLeft by tsaiwn@csie.nctu.edu.tw // will print out "==大家好==" // Because that I fill in the chinese internal code into x[ ] //練習: 修改此程式使其印出你的學號與姓名, //但是程式中不可看到你的學號與姓名 ! #include unsigned char x[9] = { 0 }; main( ) { int m = 0xa4, n=0x6a; x[0] = m; x[1]=n; x[2] = 0xae, x[3]=97; x[4] = 0xa6, x[5]=0x6e; printf("==%s==\n", x); printf("Hit RETURN key..."); getchar( ); return 0; } //練習: 修改此程式使其印出你的學號與姓名, //但是程式中不可看到你的學號與姓名 ! /***** C:\test2>gcc p22.c C:\test2>a.exe ==大家好== C:\test2> *************************/