Forum: C Aug 11th, 2007 |
| Replies: 3 Views: 1,273 Re: Simplified DES Please say what r the mistakes i have to fix? PLease Help me i can't trace them out! |
Forum: C Aug 11th, 2007 |
| Replies: 3 Views: 1,273 Simplified DES 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... |
Forum: C Aug 5th, 2007 |
| Replies: 1 Views: 1,337 RSA Code 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... |
Forum: C Jul 3rd, 2007 |
| Replies: 12 Views: 1,552 Re: Crc Am Giving u The Code Mr.Naure
char pr[5],out[5];
void substr(char* pra,int strt,int end)
{
int j,k;
strcpy(pr,"\0");
for(j=strt,k=0;j<=end&&k<5;j++,k++)
pr[k]=pra[j];
} |
Forum: C Jul 3rd, 2007 |
| Replies: 12 Views: 1,552 Re: Crc naure, I have Corrected the Code n now the exor method is not workin' even i have changed the exor function I have declared the Output variables Globally Am I Right in this way? |
Forum: C Jul 3rd, 2007 |
| Replies: 11 Views: 1,547 |
Forum: C Jun 30th, 2007 |
| Replies: 23 Views: 18,977 |
Forum: C Jun 30th, 2007 |
| Replies: 12 Views: 1,552 Re: Crc Aia, The substr method is workin' but the problem is that
in the line 35x value is Correct only but when it is give as parameter to exor it is taking as NULL pls give me the Corrected Code... |
Forum: C Jun 30th, 2007 |
| Replies: 23 Views: 18,977 |
Forum: C Jun 30th, 2007 |
| Replies: 23 Views: 18,977 Re: ASCII values and characters Sorry Aia ,If I had Hurt u
I have Spoken Like That Coz U had given Me Harsh Replies 4 my Evry Reply Please Excuse Me Plzzzzzzzzzzzzz |
Forum: C Jun 30th, 2007 |
| Replies: 23 Views: 18,977 Re: ASCII values and characters Oyeah,This will work in TC 3.0 Compiler Check it out n then Speak about the Code
Any way Y do U bother about the Code in Syntax Bother in its Logic |
Forum: C Jun 30th, 2007 |
| Replies: 12 Views: 1,552 Crc Hey, Some one Please help in Completing this code of CRC
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++)
... |
Forum: C Jun 29th, 2007 |
| Replies: 23 Views: 18,977 |
Forum: C Jun 29th, 2007 |
| Replies: 5 Views: 1,224 Re: help wid prime numbers! Hey aaisha,
You Can Try this
#include <stdio.h>
main()
{
int n,i=1,j,c;
clrscr();
printf("Enter Number Of Terms");
printf("Prime Numbers Are Follwing"); |
Forum: C Jun 29th, 2007 |
| Replies: 23 Views: 18,977 |
Forum: C Jun 29th, 2007 |
| Replies: 23 Views: 18,977 |
Forum: C Jun 29th, 2007 |
| Replies: 7 Views: 974 Re: arrays Here I Present The Code Mr.
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++) |
Forum: C Jun 29th, 2007 |
| Replies: 3 Views: 696 |
Forum: C Jun 29th, 2007 |
| Replies: 1 Views: 617 Crc Hai Guys This Is Praneeth Kumar Can U please give me a Code 4 CRC -12,CRC-16,CRC-CCITT in C |