在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()函数返回的是从程序启动开始已经过的时钟周期数,而非真实时间,因此在不同平台和系统上可能会有差异。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: c语言中的pow函数怎么使用