系统CLOCK 频率 C代码查看范例

#include <stdio.h>
#include <stdlib.h>

#include <asm/param.h>   //HZ

int main(void)
{   
    printf("HZ : %d \n",HZ);

    return 0;
}

原文地址:https://www.cnblogs.com/leaven/p/1734276.html