Hi Stalin,
Segmentation fault is usually due to memory access violation. A common example is as follows. int x[10]; x[20] = 0; where you create an array x with 10 slots, but try to access 20th slot of x. Hope this will help. Best Regards, Teerawat Issariyakul http://www.ns2ultimate.com/ http://www.facebook.com/pages/Teerawat-Issariyakul/358240861417 http://twitter.com/T_Bear http://www.t-issariyakul.blogspot.com http://www.ece.ubc.ca/~teerawat On 4/9/2010, "stalin babu" <[email protected]> wrote: > > Hi all > > when i am running a simulation with 10 nodes it's working fine, >when i am trying to > run using 20 node , i got the "Segmenatation fault" error . > > pl help me it's urgent for my project >
