Extremely basic but something I obviously looked over and now I need it :) !
1 2 3 4 5 6 7 8 9 10 11 12 13 14
int main()
{
//create 2 arrays here to hold the int array and char array
arrayFunction();
return0;
}
int aarrayFunction();
{
//does alot of maths here
int numbers[3] = {1,2,3};
char letter[3] = {t,y,u};
//return both arrays
}