<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>stober's Feed - Programmer's Heaven</title>
    <link>http://www.programmersheaven.com/feed/User/55309/RSS.aspx</link>
    <description>Events at Programmer's Heaven related to the user stober.</description>
    <language>en</language>
    <copyright>Copyright 2012 Programmers Heaven</copyright>
    <pubDate>Thu, 09 Feb 2012 06:39:18 -0800</pubDate>
    <generator>Argotic Syndication Framework 2007.3.0.1, http://www.codeplex.com/Argotic</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <ttl>360</ttl>
    <item>
      <title>Re: String</title>
      <link>http://www.programmersheaven.com/mb/beginnercpp/416419/416423/ReadMessage.aspx#416423</link>
      <description>&lt;p&gt;Posted a '&lt;a href="http://www.programmersheaven.com/mb/beginnercpp/416419/416423/ReadMessage.aspx#416423"&gt;reply&lt;/a&gt; on the &lt;a href="http://www.programmersheaven.com/mb/beginnercpp/Board.aspx"&gt;Beginner C/C++&lt;/a&gt; forum.&lt;/p&gt;A string is some characters that are stored in consecutive memory locations and terminated with the '\0' character -- often called a NULL terminator.  For example: &lt;br /&gt;
&lt;pre class="sourcecode"&gt;
char MyString[] = "Hello World";
&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
IN the above, MyString is the name I gave to the memory location that contains the characters "Hello World".  We normally do not care where those characters are stored, all we care about is the name -- MyString.  &lt;br /&gt;
=============================================&lt;br /&gt;
never lie -- the government doesn't like the competition. (Author unknown)</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/beginnercpp/416419/416423/ReadMessage.aspx#416423</guid>
      <pubDate>Fri, 14 May 2010 06:17:33 -0800</pubDate>
    </item>
    <item>
      <title>Re: What are advantages of using Turbo C?</title>
      <link>http://www.programmersheaven.com/mb/CandCPP/415951/415996/ReadMessage.aspx#415996</link>
      <description>&lt;p&gt;Posted a '&lt;a href="http://www.programmersheaven.com/mb/CandCPP/415951/415996/ReadMessage.aspx#415996"&gt;reply&lt;/a&gt; on the &lt;a href="http://www.programmersheaven.com/mb/CandCPP/Board.aspx"&gt;C and C++&lt;/a&gt; forum.&lt;/p&gt;AFAIK the only people on planet Earth that still use Turbo C are in India.  Why in the world do India's universities ROB their students of decent education is beyond me.  They are teaching their students the wrong way to program computers by requiring them to use an ancient comiler that has not been used in businesses for at least two decades now.  I know students in India are among the smartest in the world and they diserve a better education than they are getting there.&lt;br /&gt;
=============================================&lt;br /&gt;
never lie -- the government doesn't like the competition. (Author unknown)</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/CandCPP/415951/415996/ReadMessage.aspx#415996</guid>
      <pubDate>Thu, 29 Apr 2010 05:49:18 -0800</pubDate>
    </item>
    <item>
      <title>OMG This Site Sucks</title>
      <link>http://www.programmersheaven.com/mb/offtopic/415984/415984/ReadMessage.aspx#415984</link>
      <description>&lt;p&gt;Posted a '&lt;a href="http://www.programmersheaven.com/mb/offtopic/415984/415984/ReadMessage.aspx#415984"&gt;new message&lt;/a&gt; on the &lt;a href="http://www.programmersheaven.com/mb/offtopic/Board.aspx"&gt;Off topic board&lt;/a&gt; forum.&lt;/p&gt;I'm using 64-bit Windows 7 and IE8.  This site must be one of the worst sites I have visited.  When I tried to change my profile some scrip was running that my browser had to kill.  Tried to send a PM and the same thing.  I'm afraid I won't bother coming back because it isn't worth the hassle having to kill the browser every few minutes.&lt;br /&gt;
=============================================&lt;br /&gt;
never lie -- the government doesn't like the competition. (Author unknown)</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/offtopic/415984/415984/ReadMessage.aspx#415984</guid>
      <pubDate>Wed, 28 Apr 2010 19:32:24 -0800</pubDate>
    </item>
    <item>
      <title>Re: need COBOL forum</title>
      <link>http://www.programmersheaven.com/mb/languages/385913/385937/ReadMessage.aspx#385937</link>
      <description>&lt;p&gt;Posted a '&lt;a href="http://www.programmersheaven.com/mb/languages/385913/385937/ReadMessage.aspx#385937"&gt;reply&lt;/a&gt; on the &lt;a href="http://www.programmersheaven.com/mb/languages/Board.aspx"&gt;New programming languages&lt;/a&gt; forum.&lt;/p&gt;COBOL -- hummmm!  Do people still use that language?  I haven't even hear it mentioned in the past 25 years.  But apparently someone is using it because of &lt;a href="http://www.screenio.com/gui_screenio/gs.htm"&gt;this windows compiler&lt;/a&gt;&lt;br /&gt;
=============================================&lt;br /&gt;
never lie -- the government doesn't like the competition. (Author unknown)</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/languages/385913/385937/ReadMessage.aspx#385937</guid>
      <pubDate>Wed, 18 Feb 2009 13:34:49 -0800</pubDate>
    </item>
    <item>
      <title>Re: How to inherit a MFC dialog box?</title>
      <link>http://www.programmersheaven.com/mb/mfc_coding/385890/385936/ReadMessage.aspx#385936</link>
      <description>&lt;p&gt;Posted a '&lt;a href="http://www.programmersheaven.com/mb/mfc_coding/385890/385936/ReadMessage.aspx#385936"&gt;reply&lt;/a&gt; on the &lt;a href="http://www.programmersheaven.com/mb/mfc_coding/Board.aspx"&gt;C++ MFC&lt;/a&gt; forum.&lt;/p&gt;Its done exactly like any other c++ class.  If you need message maps in your new dialog then add the DECLARE_MESSAGE_MAP macro in the header file (see the original dialog's header file for example).&lt;br /&gt;
=============================================&lt;br /&gt;
never lie -- the government doesn't like the competition. (Author unknown)</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/mfc_coding/385890/385936/ReadMessage.aspx#385936</guid>
      <pubDate>Wed, 18 Feb 2009 13:28:18 -0800</pubDate>
    </item>
    <item>
      <title>Re: vc++</title>
      <link>http://www.programmersheaven.com/mb/CandCPP/385837/385935/ReadMessage.aspx#385935</link>
      <description>&lt;p&gt;Posted a '&lt;a href="http://www.programmersheaven.com/mb/CandCPP/385837/385935/ReadMessage.aspx#385935"&gt;reply&lt;/a&gt; on the &lt;a href="http://www.programmersheaven.com/mb/CandCPP/Board.aspx"&gt;C and C++&lt;/a&gt; forum.&lt;/p&gt;You don't have to use precompiled headers if you don't want to.  Their use can be turned off -- how to do that depends on the compiler and version you are using.  &lt;br /&gt;
=============================================&lt;br /&gt;
never lie -- the government doesn't like the competition. (Author unknown)</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/CandCPP/385837/385935/ReadMessage.aspx#385935</guid>
      <pubDate>Wed, 18 Feb 2009 13:20:53 -0800</pubDate>
    </item>
    <item>
      <title>Re: C++ using MS Access as Database</title>
      <link>http://www.programmersheaven.com/mb/CandCPP/352316/385934/ReadMessage.aspx#385934</link>
      <description>&lt;p&gt;Posted a '&lt;a href="http://www.programmersheaven.com/mb/CandCPP/352316/385934/ReadMessage.aspx#385934"&gt;reply&lt;/a&gt; on the &lt;a href="http://www.programmersheaven.com/mb/CandCPP/Board.aspx"&gt;C and C++&lt;/a&gt; forum.&lt;/p&gt;IMO you download the wrong compiler.  If you want to stick with that compiler then you also need to download the Microsoft Platform SDK, which is really huge.  But had you downloaded VC++ 2008 Express you don't need that SDK. &lt;br /&gt;
=============================================&lt;br /&gt;
never lie -- the government doesn't like the competition. (Author unknown)</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/CandCPP/352316/385934/ReadMessage.aspx#385934</guid>
      <pubDate>Wed, 18 Feb 2009 13:18:36 -0800</pubDate>
    </item>
  </channel>
</rss>
