hi..i came across segmentation fault in my code
i thought it may be cos of array bounnd so i did :


long long int maxedges=10000;
static long long int *position,*color,*E_Name,*v1,*v2,*altnum_Edges;

position=new long long int[maxedges];
color=new long long int[maxedges];
E_Name=new long long int[maxedges];

and i checked at one place whether the size is getting bigger

if((calculated value) >maxedges)) maxedges=calculatedvalue;
but sti ll am getting segmentation fault