
-----------------------------------
ronnieb23
Sun Nov 01, 2009 9:30 pm

vector/matrix program help
-----------------------------------
I was wondering if anyone could take a look at my code and tell me why when i run my program and it completes its task it will say segmentation error core dumped or something like that. It should continue to run the program over again but it doesn't.


#include 
#include 
#include 



bool vector_addition(int* v1, int n1, int* v2, int n2, int* result)
{
if (n1!=n2) 
{
return 0;
}	
for (int x=0; x