Need to create two arrays of integers subtact the two then store results into a third array. Then print all 3 arrays. Here is the jumbled crap i have. Hope Someone can help!
insert
Code:
#include <stdio.h>

int main()
{
int i, f;

#define nums 10
int nums [] = {10, 11, 12, 13, 14, 15, 16, 17, 18, 19};

#define num 10
int num [] = {2, 3, 4, 5, 6, 7, 8 ,9 ,10};

#define totes 10
int totes[];

for (i=0, i<nums, i++, f=0, f<num, f++)
 nums[f] - num[i] = totes[];

printf( "the results of the arrays are: %d\n", totes);
printf( "array one is: %d\n", nums);
printf( "array two is: %d\n", num);

return 0;
}