顯示具有 C 標籤的文章。 顯示所有文章
顯示具有 C 標籤的文章。 顯示所有文章

星期日, 11月 25, 2012

[C] 用switch/case完全取代if/else if

前一段時間被學弟問到switch有沒有辦法做區間的判斷
例如:
if(input>90)

....

else if(input>80)

...

else if(input>70)

...

else

...



當下的回答是"不行"

星期一, 4月 02, 2012

[C] standard input redirection

這禮拜在看給學生的spec時由CA大大發現了一個問題:
平常程式執行,會用pipe(|)或是(<)的方式將檔案塞到程式的stdin中,例如

./read_file < test.data

這樣就會把test.data這個檔案變成程式的stdin