Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
57% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
1
3 Commented Posts
~29.6K People Reached
Favorite Forums

11 Posted Topics

Member Avatar for praneeth_gunda

This Program implements the Predictive Parsing Of the grammar E->E+T/T F->F*T/F F->id(Identifier)

Member Avatar for yesim
1
27K
Member Avatar for praneeth_gunda

Hi EveryBody,This is the Code I have written for Simplified DES it is delivering the Cipher of 16-bit size actually it should deliver of size 8 Please help me in solving the Problem and even tell me how 2 reduce the Complexity [code] #include<string.h> char ep[8],p10[10],p8[8],ip[8],ip1[8],pr[10],key1[8],key2[8],p4[4]; int s0[4][4]={{1,0,3,2},{3,2,1,0},{0,2,1,3},{3,1,3,2}} ,s1[4][4]={{0,1,2,3},{2,0,1,3},{3,0,1,0},{2,1,0,3}}; void …

Member Avatar for elava
0
504
Member Avatar for praneeth_gunda
Member Avatar for srinivas88
0
873
Member Avatar for bunty_kkp
Member Avatar for praneeth_gunda

Hey Every Body can u PLease help me with this this is a code 4 RSA it is workin' for small values of {p,q,e} like {11,3,7} but it does'nt work for {11,17,7} Please help me at this POint even long double is not enough for storing the value of c[i]^d …

Member Avatar for nyagaj
0
160
Member Avatar for praneeth_gunda

Hey, Some one Please help in Completing this code of CRC [code=c] char* substr(char* pra,int strt,int end)//To Evaluate Substring { char pr[5]="\0"; int j,k; for(j=strt,k=0;j<=end&&k<5;j++,k++) pr[k]=pra[j]; return pr; } char* exor(char* pra,char* div)//To Evaluate Mod2 Operation { char out[5]="\0"; int i; for(i=0;i<strlen(pra);i++) { if(pra[i]==div[i]) out[i]='0'; else out[i]='1'; } return out; …

Member Avatar for Aia
0
273
Member Avatar for smithag261

Hey Dude, TRy this Out void main() { i=0; while(i<256) printf("\n%c",i); }

Member Avatar for WaltP
0
495
Member Avatar for aaisha

Hey aaisha, You Can Try this [code=c] #include <stdio.h> main() { int n,i=1,j,c; clrscr(); printf("Enter Number Of Terms"); printf("Prime Numbers Are Follwing"); scanf("%d",&n); while(i<=n) { c=0; for(j=1;j<=i;j++) { if(i%j==0) c++; } if(c==2) printf("%d ",i) i++; } getch(); }[/code]

Member Avatar for Narue
0
120
Member Avatar for andy_i

Here I Present The Code Mr. [code=c] void main() { int a[10],max1,max2;//Array Size=10 clrscr(); printf("Enter The Array Elements"); max1=a[0]; max2=a[0]; for(i=0;i<9;i++) { if(a[i]>=max1) max1=a[i]; } for(i=0;i<9;i++) { if(a[i]>=max2&&a[i]!=max1) max2=a[i]; } printf("%d %d",max1,max2); }[/code]

Member Avatar for Rashakil Fol
0
133
Member Avatar for aasi007onfire
Member Avatar for praneeth_gunda
0
128
Member Avatar for praneeth_gunda

Hai Guys This Is Praneeth Kumar Can U please give me a Code 4 CRC -12,CRC-16,CRC-CCITT in C

Member Avatar for Aia
0
71

The End.