any one can explain it detail i am getting many wrong answer
in this problem
thanks for help
Search found 2 matches
- Thu May 08, 2008 10:02 am
- Forum: Volume 3 (300-399)
- Topic: 331 - Mapping the Swaps
- Replies: 11
- Views: 5851
- Tue May 06, 2008 6:30 am
- Forum: Volume 4 (400-499)
- Topic: 492 - Pig-Latin
- Replies: 213
- Views: 25649
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( isspace( str[i] )...