0
Unable to load values to pointers....
3 Answers
+ 3
Seriously, label-goto is really bad practice ..
You did not allocated your pointers, so no memory is bind to them, you should malloc-free your pointer
+ 2
Change *a = ... by a = ... and do the same with b, that is what I meant ^^
0
okay... thanks I'll check and recheck :)