User Ferruccio - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T21:18:31Zhttp://stackoverflow.com/feeds/user/4086http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1922580/import-a-dll-with-c-win32/1922615#19226151Answer by Ferruccio for Import a DLL with C++ (Win32)Ferruccio2009-12-17T15:41:44Z2009-12-17T15:41:44Z<p>You're in luck! I posted how to do this on my <a href="http://the-lazy-programmer.com/blog/?p=5" rel="nofollow">blog</a> a while ago.</p>
http://stackoverflow.com/questions/1922294/using-unicode-font-in-c-console-app/1922503#19225031Answer by Ferruccio for Using unicode font in c++ console appFerruccio2009-12-17T15:27:23Z2009-12-17T15:27:23Z<p>You could try the <a href="http://msdn.microsoft.com/en-us/library/ms686200%28VS.85%29.aspx" rel="nofollow">SetCurrentConsoleFontEx()</a> function.</p>
http://stackoverflow.com/questions/1913990/how-to-get-difference-between-two-days-in-iphone/1914114#19141143Answer by Ferruccio for How to get difference between two days in iPhoneFerruccio2009-12-16T11:33:30Z2009-12-16T11:33:30Z<p>If your dates are in NSDate objects, you can use the timeIntervalSinceDate method to find the difference as an NSTimeInterval, which will give you the difference in seconds.</p>
<p>You can then convert seconds to days, hours and minutes via a simple algorithm (this is off the top of my head and not tested):</p>
<pre><code>minutes = seconds / 60;
seconds %= 60;
hours = minutes / 60;
minutes %= 60;
days = hours / 24;
hours %= 24;
</code></pre>
http://stackoverflow.com/questions/1841758/how-to-remove-punctuation-from-a-string-in-c/1841809#18418094Answer by Ferruccio for How to remove punctuation from a String in CFerruccio2009-12-03T18:15:11Z2009-12-13T11:56:34Z<p>The idiomatic way to do this in C is to have two pointers, a source and a destination, and to process each character individually: e.g.</p>
<pre><code>#include <ctype.h>
void reformat_string(char *src, char *dst) {
for (; *src; ++src)
if (!ispunct((unsigned char) *src))
*dst++ = tolower((unsigned char) *src);
*dst = 0;
}
</code></pre>
<p>src and dst can be the same string since the destination will never be larger than the source.</p>
<p>Although it's tempting, avoid calling <code>tolower(*src++)</code> since tolower may be implemented as a macro.</p>
<p>Avoid solutions that search for characters to replace (using strchr or similar), they will turn a linear algorithm into a geometric one.</p>
http://stackoverflow.com/questions/1878001/how-do-i-check-if-a-c-string-starts-with-a-certain-string-and-convert-a-subs/1878017#18780174Answer by Ferruccio for How do I check if a C++ <string> starts with a certain string, and convert a substring to an int?Ferruccio2009-12-10T01:03:41Z2009-12-10T01:15:20Z<p>Using <a href="http://www.boost.org/doc/libs/1%5F41%5F0/doc/html/string%5Falgo.html" rel="nofollow">boost string algorithms</a> + <a href="http://www.boost.org/doc/libs/1%5F41%5F0/libs/conversion/lexical%5Fcast.htm" rel="nofollow">boost lexical cast:</a></p>
<pre><code>#include <boost/algorithm/string/predicate.hpp>
#include <boost/lexical_cast.hpp>
try {
if (boost::starts_with(argv[1], "--foo="))
foo_value = boost::lexical_cast<int>(argv[1]+6);
} catch (boost::bad_cast) {
// bad parameter
}
</code></pre>
<p>Like most boost libraries, string algorithm & lexical cast are header-only, there's nothing to link in.</p>
http://stackoverflow.com/questions/1854033/complete-online-reference-for-the-c-standard-library/1854057#18540570Answer by Ferruccio for Complete online reference for the C standard library?Ferruccio2009-12-06T00:38:41Z2009-12-06T00:38:41Z<p>I've found <a href="http://www.utas.edu.au/infosys/info/documentation/C/CStdLib.html" rel="nofollow">this reference</a> useful.</p>
http://stackoverflow.com/questions/1852130/introduction-to-gui-programming-with-c/1852174#18521741Answer by Ferruccio for Introduction to GUI programming with cFerruccio2009-12-05T13:13:27Z2009-12-05T13:13:27Z<p>If you want to learn GUI programming on Windows in C, the good news is that the native API is all based on C. The bad news is that the native API is not exactly a model of clearness and consistency. It is much easier to start with an OO framework built on top of that API.</p>
<p>That being said, if you still want to learn Windows GUI programming in C, your best bet is Petzold's <a href="http://rads.stackoverflow.com/amzn/click/157231995X" rel="nofollow">Programming Windows</a>. It will teach you Windows programming in general, including all the GUI stuff, using the native API.</p>
http://stackoverflow.com/questions/1842445/how-to-convert-stdwstring-to-a-tchar/1843116#18431162Answer by Ferruccio for How to convert std::wstring to a TCHAR*Ferruccio2009-12-03T21:41:09Z2009-12-03T21:41:09Z<pre><code>#include <atlconv.h>
TCHAR *dst = W2T(src.c_str());
</code></pre>
<p>Will do the right thing in ANSI or Unicode builds.</p>
http://stackoverflow.com/questions/231951/whats-the-next-thing-on-your-list-to-learn/1842765#18427650Answer by Ferruccio for What's the next thing on your list to learn?Ferruccio2009-12-03T20:39:56Z2009-12-03T20:39:56Z<p>Photography. Looks like fun.</p>
http://stackoverflow.com/questions/1821061/batch-script-deleting-itself/1821120#18211200Answer by Ferruccio for Batch : script deleting itselfFerruccio2009-11-30T17:13:32Z2009-11-30T17:13:32Z<p>Instead of running launch.bat via a <code>cmd /c launch.bat</code>, which will try to transfer control back to the calling batch file when it's done, run it by simply doing: <code>launch.bat</code>
This will transfer control (think of it as a goto instead of a call) to the batch file, so it wont try to return control to a file that no longer exists.</p>
http://stackoverflow.com/questions/1812348/a-question-about-union-in-c/1812372#18123724Answer by Ferruccio for A question about union in CFerruccio2009-11-28T12:04:27Z2009-11-28T12:11:02Z<p>The output from such code will be dependent on your platform and C compiler implementation. Your output makes me think you're running this code on a litte-endian system (probably x86). If you were to put 515 into i and look at it in a debugger, you would see that the lowest-order byte would be a 3 and the next byte in memory would be a 2, which maps exactly to what you put in ch.</p>
<p>If you did this on a big-endian system, you would have (probably) gotten 770 (assuming 16-bit ints) or 50462720 (assuming 32-bit ints).</p>
http://stackoverflow.com/questions/1803079/what-is-the-advantage-of-using-initializers-for-a-constructor-in-c/1803156#18031561Answer by Ferruccio for What is the advantage of using initializers for a constructor in C++?Ferruccio2009-11-26T11:31:45Z2009-11-26T11:31:45Z<p>Like others have said, it's more efficient to use the first form for types with non-trivial construction.</p>
<p>In addition, the first form gives you the ability to catch any exceptions thrown in the constructor of the member object (or base class) that is being initialized by using the function form of a try/catch block. e.g:</p>
<pre><code>MyObject() : memberObject(...)
try {
// my constructor
}
catch (...) {
// catches exceptions in try block AND memberObject constructor
}
</code></pre>
<p>That's not missing a set of brackets. If you do put another set of brackets around the try/catch block it will not catch exceptions in the memberObject constructor, just the try block.</p>
http://stackoverflow.com/questions/1794233/is-there-any-good-tree-manipulation-template-libraries-for-c-out-there/1794389#17943891Answer by Ferruccio for Is there any good tree manipulation (template) libraries for C++ out there?Ferruccio2009-11-25T03:07:46Z2009-11-25T03:07:46Z<p>What do you need the tree for? There may already be something in the STL or Boost that satisfies your need. For example: the STL <code>std::map<key,value></code> is usually implemented as a balanced binary tree.</p>
<p>There is also <a href="http://tree.phi-sci.com/" rel="nofollow">tree.hh</a> which implements an STL-like n-way tree.</p>
http://stackoverflow.com/questions/259269/stdgetline-returns6std::getline() returnsFerruccio2008-11-03T16:56:33Z2009-11-24T15:03:09Z
<p>I have a loop that reads each line in a file using getline().</p>
<pre><code>istream is;
string line;
while (!getline(is, line).eof())
{
}
</code></pre>
<p>I noticed that calling getline() like this also seems to work:</p>
<pre><code>while (getline(is, line))
</code></pre>
<p>What's going on here? getline() returns a stream reference. Is it being converted to a pointer somehow? Is this actually a good practice or should I stick to the first form?</p>
http://stackoverflow.com/questions/1789421/null-pointer-is-the-same-as-deallocating-it/1789545#178954523Answer by Ferruccio for NULL pointer is the same as deallocating it?Ferruccio2009-11-24T11:41:55Z2009-11-24T11:41:55Z<p>Under most circumstances, that will cause a memory leak in your process. You have several options for managing memory in C++.</p>
<ol>
<li><p>Use a <code>delete</code> to manually free memory when you're done with it. This can be hard to get right, especially in the context of exception handling.</p></li>
<li><p>Use a smart pointer to manage memory for you (auto_ptr, shared_ptr, unique_ptr, etc.)</p></li>
<li><p>C++ does not come with a garbage collector, but nothing prevents you from using one (such as the <a href="http://www.hpl.hp.com/personal/Hans%5FBoehm/gc/" rel="nofollow">Boehm GC</a>) if you want to go down that route.</p></li>
</ol>
http://stackoverflow.com/questions/119098/which-i-o-library-do-you-use-in-your-c-code12Which I/O library do you use in your C++ code?Ferruccio2008-09-23T04:14:47Z2009-11-23T07:34:17Z
<p>In new C++ code, I tend to use the C++ iostream library instead of the C stdio library.</p>
<p>I've noticed some programmers seem to stick to stdio, insisting that it's more portable.</p>
<p>Is this really the case? What do you use?</p>
http://stackoverflow.com/questions/1763692/c-redirect-output/1763724#17637246Answer by Ferruccio for C++ Redirect OutputFerruccio2009-11-19T14:38:09Z2009-11-19T14:38:09Z<p>You can use freopen() on stdout to redirect stdout to a file.</p>
http://stackoverflow.com/questions/1738845/python-and-iphone-development-on-mac-minimum-recommended-hardware/1738867#17388674Answer by Ferruccio for Python and iPhone development on Mac - minimum/recommended hardware ?Ferruccio2009-11-15T21:19:58Z2009-11-15T21:25:50Z<p>Any of those platforms are going to be more than adequate for iPhone development, but since Apple is not allowing anything that requires a VM or an interpreted environment, there is no way to do iPhone development using Python at this time.</p>
<p>EDIT: Looks like I misread that as doing Python development on an iPhone, so just ignore the second part of my answer. Any of those platforms are going to be fine for either iPhone or Python development.</p>
http://stackoverflow.com/questions/1721488/c-array-access-through-pointer/1721535#17215352Answer by Ferruccio for c++ array access through pointerFerruccio2009-11-12T11:20:20Z2009-11-12T11:20:20Z<p>If your arrays are of fixed size, you can do it this way:</p>
<pre><code>void foo(int arr[5][5])
{
cout << arr[2][2] << endl;
}
</code></pre>
http://stackoverflow.com/questions/349899/what-c-compilers-are-supporting-lambda-already/349906#3499067Answer by Ferruccio for What C++ compilers are supporting lambda already?Ferruccio2008-12-08T15:45:09Z2009-11-09T20:58:42Z<p><a href="https://connect.microsoft.com/VisualStudio/content/content.aspx?ContentID=9790" rel="nofollow">Visual Studio 2010 CTP</a> supports it already.</p>
<p><strong>Update:</strong> It is now <a href="http://msdn.microsoft.com/en-us/vstudio/dd582936.aspx" rel="nofollow">Visual Studio 2010 Beta 2</a></p>
http://stackoverflow.com/questions/1668434/how-much-memory-does-a-constant-take-in-c/1668517#16685171Answer by Ferruccio for How much memory does a constant take in C?Ferruccio2009-11-03T16:35:45Z2009-11-03T16:44:53Z<p>It depends.</p>
<pre><code>const int a = 5;
</code></pre>
<p>Will take four bytes of memory (or however many bytes an int takes up on your system).</p>
<p>If you make it static:</p>
<pre><code>static const int a = 5;
</code></pre>
<p>Then the optimizer is free to replace each instance of <code>a</code> with the value of 5. The optimizer cannot do that in the first (non-static) case simply because you may refer to <code>a</code> in a separate compilation unit with:</p>
<pre><code>extern const int a;
</code></pre>
http://stackoverflow.com/questions/1649221/suppressing-objective-c-warnings/1649252#16492521Answer by Ferruccio for Suppressing Objective-C WarningsFerruccio2009-10-30T11:23:08Z2009-10-30T11:43:53Z<p>If you don't want to see them in Xcode, you can suppress them by right-clicking on a source window and selecting <strong>Message Bubbles | Errors Only</strong>. There will still be a little warning symbol next to the line, but the text of the warnings will not appear.</p>
<p>You can prevent the compiler from generating warnings by opening the project info window and going to the <strong>build</strong> tab. There is an <strong>Inhibit All Warnings</strong> checkbox under the <strong>GCC #.# - Warnings</strong> section. That looks like it will do what you want.</p>
<p>If you're building from the command line, you might try these switches:</p>
<pre><code>-GCC_WARN_INHIBIT_ALL_WARNINGS -w
</code></pre>
<p>I've never tried those switches. They were listed in the help area in the project info window.</p>
<p>But the best solution, of course, is to figure out why your code has warnings and fix it.</p>
http://stackoverflow.com/questions/1640423/error-cast-from-void-to-int-loses-precision/1640460#16404607Answer by Ferruccio for error: cast from 'void*' to 'int' loses precisionFerruccio2009-10-28T22:13:40Z2009-10-28T22:13:40Z<p>You can cast it to an <code>intptr_t</code> type. It's an <code>int</code> type guaranteed to be big enough to contain a pointer.</p>
http://stackoverflow.com/questions/1634435/how-to-check-if-computer-exists-or-not/1634469#16344691Answer by Ferruccio for how to check if computer exists or not?Ferruccio2009-10-28T00:17:01Z2009-10-28T00:17:01Z<p>You can use DNS name resolution to determine if a machine with a given hostname was ever registered in the past. This implies, but does not necessarily mean that the machine exists right now.</p>
<p>The same is true of any name resolution or directory service.</p>
http://stackoverflow.com/questions/1630484/compiler-error-help/1630545#16305452Answer by Ferruccio for compiler error helpFerruccio2009-10-27T12:41:19Z2009-10-27T12:49:34Z<p>UxTheme.h is part of the Windows SDK. The SDK comes with the newer versions of visual studio, but you can download it from <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=F26B1AA4-741A-433A-9BE5-FA919850BDBF&displaylang=en" rel="nofollow">microsoft</a>. You will also have to tell the compiler where to find the SDK header and library files.</p>
http://stackoverflow.com/questions/1617896/case-insensitive-search-in-unicode-in-c-on-windows/1617904#16179041Answer by Ferruccio for Case insensitive search in Unicode in C++ on WindowsFerruccio2009-10-24T12:36:11Z2009-10-24T12:36:11Z<p>Boost String Algorithms has an <a href="http://www.boost.org/doc/libs/1%5F40%5F0/doc/html/boost/algorithm/icontains.html" rel="nofollow">icontains()</a> function template which may do what you need.</p>
http://stackoverflow.com/questions/1615188/harmless-hacking-trick-an-application-into-thinking-that-a-local-file-has-actual/1615230#16152303Answer by Ferruccio for Harmless hacking: Trick an application into thinking that a local file has actually come from a serverFerruccio2009-10-23T18:42:48Z2009-10-23T18:42:48Z<p>You may be able to use a web-filtering proxy like <a href="http://www.proxomitron.info/" rel="nofollow">Proxomitron</a> to do that for you. I haven't looked at it in a long time, but as I recall it let you define text-matching rules that it applied to http requests and responses. You should be able to use it to redirect that one request to a local file or to a file on a server you control.</p>
http://stackoverflow.com/questions/338657/can-you-install-an-activex-control-in-ie-without-having-administrator-privileges2Can you install an ActiveX control in IE without having administrator privileges?Ferruccio2008-12-03T20:59:44Z2009-10-23T05:37:19Z
<p>I'm working on a web app that needs an ActiveX control to function. It installs just fine when the user has admin privileges, but fails to load otherwise. Is this by design and if so, is this documented somewhere? (preferably MSDN)</p>
http://stackoverflow.com/questions/1597289/hide-console-in-c-system-function-win/1597689#15976892Answer by Ferruccio for Hide console in C system() function, Win.Ferruccio2009-10-20T22:28:32Z2009-10-20T22:28:32Z<p>As FigBug stated, CreateProcess() is the way to go, but I don't think that CreateProcess() can execute a shell if statement. You may need to pass it something like this as a command:</p>
<pre><code>"cmd.exe /c \"if not exist c:\my_docs\doc.txt (xcopy /Y doc.txt c:\my_docs\)\""
</code></pre>
<p>But a better solution might be to use <a href="http://msdn.microsoft.com/en-us/library/aa363858%28VS.85%29.aspx" rel="nofollow">CreateFile()</a> to test if a file exists and <a href="http://msdn.microsoft.com/en-us/library/aa363851%28VS.85%29.aspx" rel="nofollow">CopyFile()</a> to copy it.</p>
http://stackoverflow.com/questions/1585390/c-function-syntax-parameter-types-declared-after-parameter-list/1585403#15854037Answer by Ferruccio for C function syntax, parameter types declared after parameter listFerruccio2009-10-18T16:50:30Z2009-10-18T16:50:30Z<p>That's the old-style syntax for parameter lists, which is still supported. In K&R C you could also leave off the type declarations and they would default to int. i.e.</p>
<pre><code>main(argc, argv)
char *argv[];
{
return 0;
}
</code></pre>
<p>would be the same function.</p>
http://stackoverflow.com/questions/1851959/sending-key-strokes-to-quakeComment by Ferruccio on Sending Key Strokes to QuakeFerruccio2009-12-05T13:22:27Z2009-12-05T13:22:27ZPost your code. The Quake games do not use DirectX. SendKeys should work.http://stackoverflow.com/questions/1841758/how-to-remove-punctuation-from-a-string-in-c/1841775#1841775Comment by Ferruccio on How to remove punctuation from a String in CFerruccio2009-12-03T21:53:08Z2009-12-03T21:53:08Z@asveikau - yes, but the else clause is comparing the pointers, not the characters they point to.http://stackoverflow.com/questions/1841758/how-to-remove-punctuation-from-a-string-in-c/1841809#1841809Comment by Ferruccio on How to remove punctuation from a String in CFerruccio2009-12-03T21:49:56Z2009-12-03T21:49:56Z@asveikau - you may be thinking of _tolower(), which requires that it is passed an upper-case character. tolower() is supposed to check for that.http://stackoverflow.com/questions/1841758/how-to-remove-punctuation-from-a-string-in-c/1841775#1841775Comment by Ferruccio on How to remove punctuation from a String in CFerruccio2009-12-03T20:35:42Z2009-12-03T20:35:42ZThe second else if clause should be: else if (*src == *dst)
But you could actually take it out completely and let the final else just copy matching characters.http://stackoverflow.com/questions/1841758/how-to-remove-punctuation-from-a-string-in-c/1841775#1841775Comment by Ferruccio on How to remove punctuation from a String in CFerruccio2009-12-03T20:32:51Z2009-12-03T20:32:51ZSince tolower() is usually implemented as a macro, you want to take the post-increment operator out of there, otherwise you'll have some nasty side-effects.http://stackoverflow.com/questions/1841758/how-to-remove-punctuation-from-a-string-in-c/1841809#1841809Comment by Ferruccio on How to remove punctuation from a String in CFerruccio2009-12-03T19:59:57Z2009-12-03T19:59:57Z@Jeffrey - you're right. I was thinking of O(n^2) as exponential.http://stackoverflow.com/questions/1841758/how-to-remove-punctuation-from-a-string-in-c/1841809#1841809Comment by Ferruccio on How to remove punctuation from a String in CFerruccio2009-12-03T18:24:08Z2009-12-03T18:24:08Zthanks, it's been a long time since I've written production C codehttp://stackoverflow.com/questions/1821061/batch-script-deleting-itself/1821120#1821120Comment by Ferruccio on Batch : script deleting itselfFerruccio2009-11-30T18:02:57Z2009-11-30T18:02:57ZWhat I'm saying is that the launch.bat command should be the very last thing the batch file does, any cleanup code should go into launch.bat.http://stackoverflow.com/questions/132241/hidden-features-of-c/980530#980530Comment by Ferruccio on Hidden features of CFerruccio2009-11-24T11:27:46Z2009-11-24T11:27:46ZEnums may be C99. Array initializers & the trailing comma are K&R.http://stackoverflow.com/questions/132241/hidden-features-of-c/132702#132702Comment by Ferruccio on Hidden features of CFerruccio2009-10-28T19:07:51Z2009-10-28T19:07:51Z@AndreyT - You're right. I was.http://stackoverflow.com/questions/132241/hidden-features-of-c/132702#132702Comment by Ferruccio on Hidden features of CFerruccio2009-10-28T11:15:11Z2009-10-28T11:15:11Z@Chris Lutz - I'm pretty sure the trailing comma goes all the way back to K&R. It's described in the second edition (1988).http://stackoverflow.com/questions/1634435/how-to-check-if-computer-exists-or-not/1634469#1634469Comment by Ferruccio on how to check if computer exists or not?Ferruccio2009-10-28T02:50:53Z2009-10-28T02:50:53Z"registered" was a poor choice of words on my part. I meant that a DNS server had a record of that hostname. I did not mean a domain name officially registered through a registrar.http://stackoverflow.com/questions/1632915/what-do-u-think-of-indiaComment by Ferruccio on What do u think of IndiaFerruccio2009-10-27T19:48:03Z2009-10-27T19:48:03ZThe food is excellent.http://stackoverflow.com/questions/1617896/case-insensitive-search-in-unicode-in-c-on-windows/1617904#1617904Comment by Ferruccio on Case insensitive search in Unicode in C++ on WindowsFerruccio2009-10-24T13:16:46Z2009-10-24T13:16:46ZIt will work with both wchar_t* and std::wstring types or anything derived from std::basic_string<>.http://stackoverflow.com/questions/1615188/harmless-hacking-trick-an-application-into-thinking-that-a-local-file-has-actual/1615237#1615237Comment by Ferruccio on Harmless hacking: Trick an application into thinking that a local file has actually come from a serverFerruccio2009-10-23T18:58:42Z2009-10-23T18:58:42ZYou could grab the .swf file put it on your own server as well.