2

我知道如何使用 shell 获取 CPU 或操作系统的位数。

cat /proc/cpuinfo | grep lm #-> get bit count of a cpu
uname -a                    #-> get bit count of an operation system

但是,我们如何才能获得 C 程序中的位数。这是一个面试问题,我的解决方案如下:

int *ptr;
printf("%d\n", sizeof(ptr)*8);

但面试官说这是错误的。那么,正确答案是什么?

4

2 回答 2

1

在 Linux 上,一种简单的方法是popen使用uname -m命令并解析输出。

另一种方法是查看uname命令的源(因为它很容易获得)并直接基于它实现一些东西。

于 2013-10-17T05:21:31.267 回答
1

POSIX 也提供了一个 C 函数uname。您可以获得类似 shell 命令的结果uname

#include <stdio.h>
#include <sys/utsname.h>

int main(){
    struct utsname buf;
    uname(&buf);
    printf("sysname: %s\nversion: %s\nmachine: %s\n ", buf.sysname, buf.version, buf.machine);
    return 0;
}

我机器上的输出:

sysname: Linux
version: #1 SMP Tue Oct 2 22:01:37 EDT 2012
machine: i686
于 2013-10-17T05:32:14.897 回答