01.08.2012, 14:08
An array is merely a list of elements. If a function returns an int type or character, the first element of the array retains the value of the assigned function.
I'm still unsure if THIS is what you actually want though (it's just an example).
pawn Код:
stock func()
{
return 'A';
}
main ()
{
new array[4];
array[0] = func();
printf("%c", array);
}