glTranslatef

How do you use arrays as the parameters.
glTranslatefa[i], b[i], c[i];

i keep on getting errors

error LNK2001: unresolved external symbol _a
error LNK2001: unresolved external symbol _c
error LNK2001: unresolved external symbol _c

glTranslatef(a[i], b[i], c[i])

That’s a C/C++ language/tool question, not an OpenGL question. I suggest looking up the description of that error in the documentation for your compiler/linker.

It is in that form i typed it wrong
glTranslatef(a[i], b[i], c[i])

How are the a, b, and c variables declared and initialized?