[C] Data structure problem
Hello. I made a structure like so: struct ponto { int x; int y; int z; }; 1) Can I initialize the int's with a default value? int var = value; doesn't seem to work, compiler says "syntax error before '=' token" or something of sorts. 2) I need to work with several of these like in a array of structures, but I only know ho...