CODE DELETED
I GET ACC
Search found 4 matches
- Tue Aug 29, 2006 9:51 am
- Forum: Volume 101 (10100-10199)
- Topic: 10107 - What is the Median?
- Replies: 74
- Views: 31458
- Tue Aug 29, 2006 9:20 am
- Forum: Volume 1 (100-199)
- Topic: 160 - Factors and Factorials
- Replies: 205
- Views: 45178
- Thu Aug 24, 2006 7:06 pm
- Forum: Volume 1 (100-199)
- Topic: 160 - Factors and Factorials
- Replies: 205
- Views: 45178
- Thu Aug 17, 2006 3:33 pm
- Forum: Volume 4 (400-499)
- Topic: 444 - Encoder and Decoder
- Replies: 155
- Views: 44481
444 please healp me. why wrong answer?
#include<iostream>
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
using namespace std;
void deco_der(char *c);
void enco_der(char *c);
void deco_der(char *c)
{
char a[500],b[20],s[500];
int j = 0;
int k,i,l,n;
for (n = strlen (c) - 1; n >= 0; n--) {
s [j] = c [n];
j++;
}
s [j ...
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
using namespace std;
void deco_der(char *c);
void enco_der(char *c);
void deco_der(char *c)
{
char a[500],b[20],s[500];
int j = 0;
int k,i,l,n;
for (n = strlen (c) - 1; n >= 0; n--) {
s [j] = c [n];
j++;
}
s [j ...