Error 055: start of function body without function header
#4

No.

Code:
new myarray[][14] =
{
       {1,2,3,...},{1,2,3,...},{1,2,3,...},{1,2,3,...},{1,2,3,...},... //fill your information
};
You forgot a ';' and a '=' in your code.

new ARRAYNAME[][] = //This equal sign is important
{
//all your data here
}; //END with a ;
Reply


Messages In This Thread
Error 055: start of function body without function header - by Magnezia - 19.05.2015, 00:19
Re: Error 055: start of function body without function header - by Jonny5 - 19.05.2015, 00:23
Re: Error 055: start of function body without function header - by Magnezia - 19.05.2015, 00:32
Re: Error 055: start of function body without function header - by Yashas - 19.05.2015, 05:11

Forum Jump:


Users browsing this thread: 1 Guest(s)