56 Posted Topics

Member Avatar for luitelm
Member Avatar for VatooVatoo
0
101
Member Avatar for amishosh
Member Avatar for NycNessyness

you can use this simple function. [CODE] void vStringToUpper( const char *pcInputStr, char *pcOutputStr ) { int iLength, iIndex; iLength = strlen( pcInputStr ); for( iIndex=0; iIndex<iLength; iIndex++ ) { if( pcInputStr[iIndex]>='a' && pcInputStr[iIndex]<='z' ) pcOutputStr[iIndex]=pcInputStr[iIndex]-32; // change to uppercase else pcOutputStr[iIndex]=pcInputStr[iIndex]; } } [/CODE]

Member Avatar for Aia
0
464
Member Avatar for programmer321

This is impossible to reduce size of data as you want. You can use LZW algorithm or something like that but rate of reduction depend on data

Member Avatar for ssharish2005
0
75
Member Avatar for tgmtgm1

you can use this, it is simple. :) [CODE] void vProcess( int a, int b, int c ) { if( c>=3 ) { b++; c=0; vProcess( a, b, c ); return; } if( b>=3 ) { a++; b=0; vProcess( a, b, c ); return; } if( a>=3 ) return; cout …

Member Avatar for VatooVatoo
0
378
Member Avatar for VatooVatoo

Just wanted to introduce myself. I am programmer and work for a international company in istanbul. 30 years old, maried. nice looking forum here. I mostly used to program with C/C++/MFC and lately .NET. so I will probably have more questions than answers:) anyhow.... Hello all. ;)

Member Avatar for jbennet
0
30

The End.