在C语言中,可以通过clock()函数来测量函数的执行时间。具体步骤如下:
#include <time.h>
clock_t start_time = clock();
clock_t end_time = clock();
double execution_time = (double)(end_time - start_time) / CLOCKS_PER_SEC;
printf("Execution time: %f seconds\n", execution_time);
通过以上步骤,就可以轻松地测试函数的执行时间了。值得注意的是,clock()函数返回的是从程序启动开始已经过的时钟周期数,而非真实时间,因此在不同平台和系统上可能会有差异。