Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #55.0K
2 Posted Topics
Re: I put a[10] and removed calling second swap function. It's Working! Thanks.But I didn't get the logic of this program. Can somebody please explain? [CODE]#include<stdio.h> #include<string.h> void swap(char *p,char *q) { char c; c=*p; *p=*q; *q=c; } void perm(char *a,int m,int n) { int i,j; if(m==n) { for(i=0;i<=n;i++) printf("%c", a[i]); … | |
hello Everyone! I want to implement fast transpose of a sparse matrix. It's really hard for me to understand the algorithm explained in book. Can anyone please explain in simple manner? Thank you ! :) |
The End.