typeof C中关键字

看下边一段小例子:

#include

int main (void)
{

    int i = 10;

    const typeof(i) j = i;  // 相当于定义和i 相同类型的j 赋值为i 
    printf ("j = %d \n", j);

    return 0;

}

你可能感兴趣的:(c/c++,的代码,知识)