User Thi - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T06:54:33Zhttp://stackoverflow.com/feeds/user/51529http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/967167/trimming-blank-spaces-from-a-char-array-in-c0Trimming blank spaces from a char array in CThi2009-06-08T21:40:33Z2009-06-09T04:48:05Z
<p>My char array would be looking something like below,</p>
<pre>
Org_arr[1first line text------2second line text----3third line-------4--------------------5fith line text------];
</pre>
<p>where '-' equal to blank spaces</p>
<p>The above array contains the control code(0, 1, 2, 3..) after every 20 characters starting from 0-th place.</p>
<p>I would like to convert the above text array into below format,</p>
<p>The blank spaces will be removed and a line feed will be added at the end of each line.</p>
<pre>
Conv_arr[1first line text/n2second line text/n3third line/n4/n5fith line text/n];
</pre>
<p>Please suggest me a good method to implement this,</p>
<p>Thank You</p>
http://stackoverflow.com/questions/412366/read-keyboard-characters-to-determine-shortcuts0Read keyboard characters to determine shortcutsThi2009-01-05T05:54:49Z2009-01-28T00:40:03Z
<p>I'm working on a document application and part of this application I've to add support to read the keyboard pressed events and replace the pre-defined characters set if that keyboard entry is match with the pre-defind short form/word.The actual application has implemented in C++.</p>
<p>Please provide me your thoughts on how to implement this. Is there any sample C++ program for reference? algorithm/concepts?</p>
http://stackoverflow.com/questions/451475/how-to-print-out-dash-or-dot-using-fprintf-printf5How to print out dash or dot using fprintf/printf?Thi2009-01-16T18:36:46Z2009-01-20T13:00:11Z
<p>As of now I'm using below line to print with out dot's</p>
<pre><code>fprintf( stdout, "%-40s[%d]", tag, data);
</code></pre>
<p>I'm expecting the output would be something like following,</p>
<pre>
Number of cards..................................[500]
Fixed prize amount [in whole dollars]............[10]
Is this a high winner prize?.....................[yes]
</pre>
<p>How to print out dash or dot using fprintf/printf?</p>
http://stackoverflow.com/questions/444111/printing-on-screen-and-a-text-file2printing on screen and a text fileThi2009-01-14T18:21:05Z2009-01-17T23:27:40Z
<p>I need to dump the certain things into a text file and same has needs to be displayed on screen. (I'm telling about a C program utiltiy)
The menu option looks like following,</p>
<pre>
1. display AA parameters
2. display BB parameters
3. display CC parameters
4. dump all
5. Exit
Select option >
</pre>
<p>If they select 1/2/3, it just needs to displayed on screen only or if they select option #4,it need to display all the parameters one by one and same needs to dumped in a .txt file.</p>
<p>I know, we can use the printf and fprintf functions to display on screen and write it to text file respectively. The thing is that I've display more that 20 parameters and each have at least 20 sub-parameters.</p>
<p>I'm currently implemented as below,</p>
<pre><code>printf ( "Starting serial number [%ld]\n",
serial_info_p->start_int_idx);
fprintf(file_p, "Starting serial number [%ld]\n",
serial_info_p->start_int_idx)
printf ( "Current Serial number [%d]\n",
serial_info_p->current_int_idx);
fprintf(file_p, "Current Serial number [%d]\n",
serial_info_p->current_int_idx);
</code></pre>
<p>Is there an easiest way to implement this to cut down the number of lines of code?</p>
<p>Thanks for your comments and answers.</p>
http://stackoverflow.com/questions/453954/how-good-qt-under-lgpl-for-commercial-applications0How good QT under LGPL for commercial applications?Thi2009-01-17T20:21:40Z2009-01-17T20:57:40Z
<p>Hi, Leave some thoughts about what are all the positive and negative things to use LGPL QT for commercial applications.</p>
http://stackoverflow.com/questions/229257/what-do-project-managers-do-all-day/453976#4539760Answer by Thi for What do project managers do all day?Thi2009-01-17T20:32:10Z2009-01-17T20:32:10Z<p>If someone uninstall the MS excel, MS word and outlook from their systems, certainly they do not have any work.</p>
http://stackoverflow.com/questions/449019/issue-with-file1issue with FILE Thi2009-01-15T23:50:00Z2009-01-16T01:02:51Z
<p>I'm getting the folowing error for below code,
"1506-221 (S) Initializer must be a valid constant expression"</p>
<pre><code>FILE *fp[] = {stdout, dump_f};
</code></pre>
<p>is this acceptable? what is the proper way to achive this?</p>
http://stackoverflow.com/questions/453880/how-many-developers-are-there-in-the-world/453885#453885Comment by Thi on How many developers are there in the world?Thi2009-01-17T20:55:22Z2009-01-17T20:55:22ZFrom one of the external source, it seems number of indians working in IT and ITES fleds has crossed over 1 million in 2005.http://stackoverflow.com/questions/451475/how-to-print-out-dash-or-dot-using-fprintf-printf/452189#452189Comment by Thi on How to print out dash or dot using fprintf/printf?Thi2009-01-17T19:47:01Z2009-01-17T19:47:01Zis it possible to call a function inside printf?http://stackoverflow.com/questions/412366/read-keyboard-characters-to-determine-shortcuts/412641#412641Comment by Thi on Read keyboard characters to determine shortcutsThi2009-01-05T19:41:30Z2009-01-05T19:41:30ZThe actual application is implemented with C++ and Wxwidgets. is there will be any documnetation for this?