segmentation fault comes in the program? please help? is there any way i can check in which part of the program is the mistake? Thanks daniweb and members... (Toggle Plain Text) //function bark_edge+main program #include #include #include double **bark_edge(int f_size,int samp_freq); double **transpose(double **x,int M,int N); main() { int f_size=1024; float samp_freq=44100,fcmax=samp_freq/2; double **b_edge; b_edge=bark_edge(f_size,samp_freq); } //FUNCTION-bark_edge double **bark_edge(int f_size,int samp_freq) ...