我有这个问题。我手动初始化了下面代码中注释的数组,我想要一个函数来做到这一点,它与值是什么无关。我无法做到这一点,当我在功能结束时打印时,一切都是0.有什么想法吗?
GLubyte *createGraphIndices(int size){
GLubyte * graphIndices = malloc(size * sizeof(GLubyte));
int i;
for(i = 0; i < (size/2)-1; ++i){ // até
graphIndices[i] = i;
}
for(i = (size/2)-1; i < size-2; ++i){ // até
graphIndices[i] = i;
}
for(i = 0; i < size; ++i){ // até
fprintf(stderr, "%f\n", graphIndices[i]);
}
return graphIndices;
}
// GLubyte graphIndices[] = {
//
// 0,1,
// 1,2,
// 2,3,
// 3,4,
// 4,5,
// 5,6,
// 6,7,
// 7,8,
// 9,10,
// 10,11,
// 11,12,
// 12,13,
// 13,14,
// 14,15,
// 15,16,
// 16,17
// };
答案 0 :(得分:1)
您将它们打印为花车
fprintf(stderr, "%f\n", graphIndices[i]);
你应该将它们打印为整理
fprintf(stderr, "%d\n", graphIndices[i]);