<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.0.7" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: I&#8217;m a Zero</title>
	<link>http://www.technicalinterviews.net/im-a-zero/</link>
	<description>This site features a collection of common technical interview questions gathered by a group of programmers who have been through, and given, lots of technical interviews. There is an emphasis on C++ and game programming technical interviews, but most of the questions are relevant to any technical interview.</description>
	<pubDate>Thu, 04 Dec 2008 19:12:33 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.7</generator>

	<item>
		<title>by: kiklop</title>
		<link>http://www.technicalinterviews.net/im-a-zero/#comment-17</link>
		<pubDate>Sat, 30 Dec 2006 17:59:57 +0000</pubDate>
		<guid>http://www.technicalinterviews.net/im-a-zero/#comment-17</guid>
					<description>
void clearMemory(void *pStartByte, int numBytes) {
 if (pStartByte == NULL) {
   return;
 }
 char* buffer = (char*)pStartByte;
 while (numBytes--) {
   *buffer++ = '';
 }
}
</description>
		<content:encoded><![CDATA[<p>void clearMemory(void *pStartByte, int numBytes) {<br />
 if (pStartByte == NULL) {<br />
   return;<br />
 }<br />
 char* buffer = (char*)pStartByte;<br />
 while (numBytes&#8211;) {<br />
   *buffer++ = &#8216;&#8217;;<br />
 }<br />
}
</p>
]]></content:encoded>
				</item>
</channel>
</rss>
