- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 2
- Posts with Downvotes
- 2
- Downvoting Members
- 1
11 Posted Topics
This Program implements the Predictive Parsing Of the grammar E->E+T/T F->F*T/F F->id(Identifier)
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 …
First u Start the Coding then we will help u
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 …
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; …
Hey Dude, TRy this Out void main() { i=0; while(i<256) printf("\n%c",i); }
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]
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]
make a thing when declaring the String initialize it to NULL
Hai Guys This Is Praneeth Kumar Can U please give me a Code 4 CRC -12,CRC-16,CRC-CCITT in C
The End.