Hi all, what is the syntax error below? int myarray[2] = {10,20}; while it compiles ok if int is changed to char. Regards Dravid
The error goes away if the initialisation is done in next statements. int myarray[2]; myarray[0]=10; myarray[1]=20;