Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
60% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~904 People Reached
Favorite Forums
Favorite Tags
c x 2
Member Avatar for code2cplus

a simple program to find out the permutations of all the letters in the word ex: abc gives abc acb bac bca cba cab[code]void swap(char *p,char *q){ char c; c=*p; *p=*q; *q=c; } void perm(char *a,int m,int n) { if(m==n){ for(int i=0;i<=n;i++) cout<<a[i]; } else { for(int j=n;j<=m;j++) { swap(a[j],a[n]); …

Member Avatar for Assembly Guy
0
682
Member Avatar for gunbuster363

I have to learn cobol but my acc in openVMS have no yet opened Does anyone know any windows software (like visual studio) which can write and compile and run cobol program? I know what to write some easy program now. Thanks in advance

Member Avatar for TrustyTony
0
184
Member Avatar for binoy.jayan

I am trying to develop a language converter from TAL (which runs on TANDEM systems) to C. The target C language may be "TANDEM C" or "portable C". Can anyone help me write a grammar for TAL or is there any written grammar available that I can refer to.? Thanks, …

0
38