c_cpp 在c中使用void指针数组的一些练习

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 在c中使用void指针数组的一些练习相关的知识,希望对你有一定的参考价值。

#include "stdio.h"

int main(void) {
    // Disable stdout buffering
    setvbuf(stdout, NULL, _IONBF, 0);
    
    void * items[2];
    int a = 6;
    int * b = &a;
    char word[] = "hello";
    items[0] = b;
    items[1] = word;
    char * w = items[1];
    printf("%s\n", w);
    //hello
    return 0;
}

以上是关于c_cpp 在c中使用void指针数组的一些练习的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp 允许通过C中的void指针从任何类型访问字节数组

c_cpp C ++指针使用练习

c_cpp 允许您在C中编写和重新定位void指针

c_cpp 来自void指针的hash数据

c_cpp func指针练习

c_cpp void *指针的转换问题,这里C和C ++有差别