Posts
 
Reputation
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
~7K People Reached
Favorite Forums
Favorite Tags
c x 3

2 Posted Topics

Member Avatar for code2cplus

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]); …

Member Avatar for Assembly Guy
0
684
Member Avatar for thejokerguy

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 ! :)

Member Avatar for avnish.singh5
0
7K

The End.