56 Posted Topics
Re: also read [URL]http://sc.openoffice.org/excelfileformat.pdf[/URL] | |
Re: which handles and messages? can you explain more? | |
Re: 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] | |
Re: 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 | |
Re: 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 … | |
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. ;) |
The End.