Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
60% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #37.0K
Ranked #4K
~3K People Reached
Favorite Forums
Favorite Tags
c++ x 4
c x 1
Member Avatar for AJones
Member Avatar for Wreef

you dont need to buy any book, just read this tutorial: [url]http://cplusplus.com/doc/language/tutorial/[/url] make sure you understand most of the basic stuff (variables, functions, pointers) its not very hard, it just needs some time to work with.. more you program, easier you understand new stuff...

Member Avatar for WoBinator
0
643
Member Avatar for brianotieno

why the hell is anyone answering to this?? i thought this is forum where i can learn something new from others, now i see that this is only for lames, to waste others (your) time..

Member Avatar for Dave Sinkula
0
232
Member Avatar for bharat.bhooshan

int **EL= (int**)malloc(row*col*sizeof(int) + col*sizeof(int*)); EL[0] - this is first pointer in array EL[0][0] - this is first pointer in array POINTED BY EL[0] since you didnt initialize it (EL[0]), you have random data in there, so you access random memory - segmentation fault you have to use EL[i*row+j] (or …

Member Avatar for Salem
0
190
Member Avatar for sgriffiths

you should create function which takes 2 of your structs, compares them and then return result.. [url]http://www.cplusplus.com/ref/cstdlib/qsort.html[/url] i think link aboes explaines it very clearly :]

Member Avatar for ~s.o.s~
0
689