Search found 2 matches

by rajib_cse_sust
Thu May 08, 2008 10:02 am
Forum: Volume 3 (300-399)
Topic: 331 - Mapping the Swaps
Replies: 11
Views: 8227

Re: 331 confusion

any one can explain it detail i am getting many wrong answer
in this problem

thanks for help
by rajib_cse_sust
Tue May 06, 2008 6:30 am
Forum: Volume 4 (400-499)
Topic: 492 - Pig-Latin
Replies: 213
Views: 49489

492 :: WA Wa help about Wa why?



#include <stdio.h>
#include <string.h>
#include <ctype.h>
#define MAX 10000000

char str[MAX];
int isvowel(char latter);

int main()
{
long i, len, flag;
char temp;

// freopen("E:\\nikson\\in.txt","r",stdin);

while( gets(str) )
{
len = strlen( str );

for( i = 0; i < len; i++ )
{
if ...

Go to advanced search