Re: [algogeeks] Re: Coding question.............

2011-01-28 Thread saurabh gupta
> correct me if anything wrong > > it's a rectangle. -- Man goes to doctor. Says he's depressed. Says life seems harsh and cruel. Says he feels all alone in a threatening world where what lies ahead is vague and uncertain. Doctor says "Treatment is simple. Great clown Pagliacci is in town tonight

[algogeeks] Re: Coding question.............

2011-01-28 Thread bittu
well it can be done using recursion void Transpose(int** A, int N) // Square size - 1 { if(N == 0) // Transpose of a 1 X 1 Matrix return; else { Transpose(A,N-1); for(int i=0; ihttp://groups.google.com/group/algogeeks?hl=en.