開發平台(Platform): (Ex: VC++, GCC, Linux, ...)
Dev C++
問題(Question):
printf() function 裡的 %n 是否是 compiler depend ??
小弟手邊目前只有這個 compiler ...
預期的正確結果(Expected Output):
123 : 5
錯誤結果(Wrong Output):
123 : 44
程式碼(Code):(請善用置底文網頁, 記得排版)
int i = 44;
printf( "123 :%n", &i );
printf( " %d\n", i );