<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>'C++ FIRST PROGRAM RUNNING PROBLEM' Thread RSS Feed</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest posts from the thread 'C++ FIRST PROGRAM RUNNING PROBLEM' posted on the 'C and C++' forum at Programmer's Heaven.</description>
    <language>en</language>
    <copyright>Copyright 2013 Programmers Heaven</copyright>
    <pubDate>Sat, 18 May 2013 08:28:02 -0700</pubDate>
    <lastBuildDate>Sat, 18 May 2013 08:28:02 -0700</lastBuildDate>
    <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>
    <image>
      <url>http://www.programmersheaven.com/images/ph.gif</url>
      <title>Programmers Heaven</title>
      <link>http://www.programmersheaven.com/</link>
      <width>88</width>
      <height>31</height>
    </image>
    <item>
      <title>C++ FIRST PROGRAM RUNNING PROBLEM</title>
      <link>http://www.programmersheaven.com/mb/CandCPP/430335/430335/c++-first-program-running-problem/</link>
      <description>hi...&lt;br /&gt;
&lt;br /&gt;
I am new to programming lenguage C++.&lt;br /&gt;
When i try to run following program in turboc++(ver 3.0)&lt;br /&gt;
&lt;pre class="sourcecode"&gt;1  // Fig. 2.1: fig02_01.cpp
 2  // Text-printing program.
 3  #include &amp;lt;iostream&amp;gt; // allows program to output data to the screen
 4
 5  // function main begins program execution
 6  int main()
 7  {
 8     std::cout &amp;lt;&amp;lt; "Welcome to C++!\n"; // display message
 9
10     return 0; // indicate that program ended successfully
11
12  } // end function main
&lt;/pre&gt;&lt;br /&gt;
then it shows an error that.&lt;br /&gt;
&lt;br /&gt;
FATAL FIRST.CPP 1:unable to create output file 'C:TURBOC3\SOURCE\FIRST.OBJ'&lt;br /&gt;
&lt;br /&gt;
can anyone please help that why is this error is coming and how to&lt;br /&gt;
remove this error..&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
thanks in advance&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/CandCPP/430335/430335/c++-first-program-running-problem/</guid>
      <pubDate>Wed, 21 Nov 2012 00:59:48 -0700</pubDate>
      <category>C and C++</category>
    </item>
    <item>
      <title>Re: C++ FIRST PROGRAM RUNNING PROBLEM</title>
      <link>http://www.programmersheaven.com/mb/CandCPP/430335/430338/re-c++-first-program-running-problem/#430338</link>
      <description>Test this program (it works with my Borland C++4):&lt;br /&gt;
&lt;br /&gt;
// Fig. 2.1: fig02_01.cpp&lt;br /&gt;
// Text-printing program.&lt;br /&gt;
#include &amp;lt;iostream.h&amp;gt; // allows program to output data to the screen&lt;br /&gt;
&lt;br /&gt;
// function main begins program execution&lt;br /&gt;
int main(void)&lt;br /&gt;
{&lt;br /&gt;
cout &amp;lt;&amp;lt; "Welcome to C++!\n"; // display message&lt;br /&gt;
&lt;br /&gt;
return 0; // indicate that program ended successfully&lt;br /&gt;
&lt;br /&gt;
} // end function main&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/CandCPP/430335/430338/re-c++-first-program-running-problem/#430338</guid>
      <pubDate>Wed, 21 Nov 2012 05:55:18 -0700</pubDate>
      <category>C and C++</category>
    </item>
    <item>
      <title>Re: C++ FIRST PROGRAM RUNNING PROBLEM</title>
      <link>http://www.programmersheaven.com/mb/CandCPP/430335/430339/re-c++-first-program-running-problem/#430339</link>
      <description>but i want it to be run with my turbo c++(ver-3).plz help any suggestions that a error message is displaying..&lt;br /&gt;
&lt;br /&gt;
Thanks for quick reply.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/CandCPP/430335/430339/re-c++-first-program-running-problem/#430339</guid>
      <pubDate>Wed, 21 Nov 2012 06:55:37 -0700</pubDate>
      <category>C and C++</category>
    </item>
    <item>
      <title>Re: C++ FIRST PROGRAM RUNNING PROBLEM</title>
      <link>http://www.programmersheaven.com/mb/CandCPP/430335/430344/re-c++-first-program-running-problem/#430344</link>
      <description>Is my program working with your Turbo C++ version 3 ?&lt;br /&gt;
I have not seen any C or C++ with numbers starting each line.&lt;br /&gt;
I have not seen any STD::&lt;br /&gt;
Have you tested these?&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/CandCPP/430335/430344/re-c++-first-program-running-problem/#430344</guid>
      <pubDate>Wed, 21 Nov 2012 13:57:05 -0700</pubDate>
      <category>C and C++</category>
    </item>
    <item>
      <title>Re: C++ FIRST PROGRAM RUNNING PROBLEM</title>
      <link>http://www.programmersheaven.com/mb/CandCPP/430335/430372/re-c++-first-program-running-problem/#430372</link>
      <description>: Is my program working with your Turbo C++ version 3 ?&lt;br /&gt;
yes i try to run it but it is same as early not running.&lt;br /&gt;
: I have not seen any C or C++ with numbers starting each line.&lt;br /&gt;
these number are number from when i copy this from book in actual when i write this on turboc++ version-3 i eliminated numbers&lt;br /&gt;
: I have not seen any STD::&lt;br /&gt;
in next u can see this is actual code&lt;br /&gt;
&lt;pre class="sourcecode"&gt;1  // Fig. 2.1: fig02_01.cpp
 2  // Text-printing program.
 3  #include &amp;lt;iostream&amp;gt; // allows program to output data to the screen
 4
 5  // function main begins program execution
 6  int main()
 7  {
 8     std::cout &amp;lt;&amp;lt; "Welcome to C++!\n"; // display message
 9
10     return 0; // indicate that program ended successfully
11
12  } // end function main
&lt;/pre&gt;&lt;br /&gt;
: Have you tested these?&lt;br /&gt;
all i tested but it is same problem??&lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
help any further suggestion for this problem???&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/CandCPP/430335/430372/re-c++-first-program-running-problem/#430372</guid>
      <pubDate>Thu, 22 Nov 2012 21:20:06 -0700</pubDate>
      <category>C and C++</category>
    </item>
    <item>
      <title>Re: C++ FIRST PROGRAM RUNNING PROBLEM</title>
      <link>http://www.programmersheaven.com/mb/CandCPP/430335/430373/re-c++-first-program-running-problem/#430373</link>
      <description>: Is my program working with your Turbo C++ version 3 ?&lt;br /&gt;
yes i try to run it but it is same as early not running.&lt;br /&gt;
: I have not seen any C or C++ with numbers starting each line.&lt;br /&gt;
these number are number from when i copy this from book in actual when i write this on turboc++ version-3 i eliminated numbers&lt;br /&gt;
: I have not seen any STD::&lt;br /&gt;
in next u can see this is actual code&lt;br /&gt;
&lt;pre class="sourcecode"&gt;1  // Fig. 2.1: fig02_01.cpp
 2  // Text-printing program.
 3  #include &amp;lt;iostream&amp;gt; // allows program to output data to the screen
 4
 5  // function main begins program execution
 6  int main()
 7  {
 8     std::cout &amp;lt;&amp;lt; "Welcome to C++!\n"; // display message
 9
10     return 0; // indicate that program ended successfully
11
12  } // end function main
&lt;/pre&gt;&lt;br /&gt;
: Have you tested these?&lt;br /&gt;
all i tested but it is same problem??&lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
help any further suggestion for this problem???&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/CandCPP/430335/430373/re-c++-first-program-running-problem/#430373</guid>
      <pubDate>Thu, 22 Nov 2012 21:21:57 -0700</pubDate>
      <category>C and C++</category>
    </item>
    <item>
      <title>Re: C++ FIRST PROGRAM RUNNING PROBLEM</title>
      <link>http://www.programmersheaven.com/mb/CandCPP/430335/430374/re-c++-first-program-running-problem/#430374</link>
      <description>: Is my program working with your Turbo C++ version 3 ?&lt;br /&gt;
i try it but not working yet&lt;br /&gt;
: I have not seen any C or C++ with numbers starting each line.&lt;br /&gt;
just for programming lines start from copy from book&lt;br /&gt;
: I have not seen any STD::&lt;br /&gt;
In this this is actual code you can test it here&lt;br /&gt;
&lt;pre class="sourcecode"&gt;1  // Fig. 2.1: fig02_01.cpp
 2  // Text-printing program.
 3  #include &amp;lt;iostream&amp;gt; // allows program to output data to the screen
 4
 5  // function main begins program execution
 6  int main()
 7  {
 8     std::cout &amp;lt;&amp;lt; "Welcome to C++!\n"; // display message
 9
10     return 0; // indicate that program ended successfully
11
12  } // end function main
&lt;/pre&gt;&lt;br /&gt;
: Have you tested these?&lt;br /&gt;
yes i tested these.But problem is as it is??&lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
any further suggestion for this problem&lt;br /&gt;
Thanks for Quick reply&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/CandCPP/430335/430374/re-c++-first-program-running-problem/#430374</guid>
      <pubDate>Thu, 22 Nov 2012 21:26:58 -0700</pubDate>
      <category>C and C++</category>
    </item>
    <item>
      <title>Re: C++ FIRST PROGRAM RUNNING PROBLEM</title>
      <link>http://www.programmersheaven.com/mb/CandCPP/430335/430380/re-c++-first-program-running-problem/#430380</link>
      <description>Something must be wrong with your compiler. &lt;br /&gt;
I have downloaded Turbo C++ version 3.00 and it works with my code. Make a new free download and also download Borland C++ version 5.5 You should also test some code on Rosetta Code. It is a very good place for programmers and you can compare C++ with other languages.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/CandCPP/430335/430380/re-c++-first-program-running-problem/#430380</guid>
      <pubDate>Fri, 23 Nov 2012 01:41:45 -0700</pubDate>
      <category>C and C++</category>
    </item>
  </channel>
</rss>