#include <stdio.h> #include <time.h> volatile unsigned sink; int main (void) { clock_t start = clock(); for(size_t i=0; i<10000000; ++i) sink++; clock_t end ...
確定! 回上一頁