On Sun, 2013-08-11 at 09:26 +0530, Aravindhan.K wrote: > The pastebin address for the code is http://pastebin.com/EkrwD3f2.
isdigit() takes a character as its input, not a string. Thats the problem, change isdigit(x) to isdigit(x[0]). > Please give me the steps for how to debug the segmentation faults. man gdb, or http://www.unknownroad.com/rtfm/gdbtut/ Thanks, Mohan R _______________________________________________ ILUGC Mailing List: http://www.ae.iitm.ac.in/mailman/listinfo/ilugc ILUGC Mailing List Guidelines: http://ilugc.in/mailinglist-guidelines
