Compile error using cl.exe (Visual Studio 2008) for this cpp code - Stack Overflow most recent 30 from stackoverflow.com 2009-12-14T22:14:07Z http://stackoverflow.com/feeds/question/642618 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/642618/compile-error-using-cl-exe-visual-studio-2008-for-this-cpp-code 0 Compile error using cl.exe (Visual Studio 2008) for this cpp code Anirudh Goel 2009-03-13T13:10:50Z 2009-03-14T17:46:55Z <p>I'm getting compile error in this code</p> <pre><code> #include&lt;iostream&gt; #include&lt;cstdio&gt; #include&lt;string&gt; using namespace std; void main(int argc,char *argv[]) { int i; for(i = 0;i&lt;10;i++) fprintf(cout,"%d\n",i); fprintf(cout,"abc:\n"); string s; cin&gt;&gt;s; if(s == "resume") { for(i = 0;i&lt;10;i++) fprintf(cout,"%d\n",i); } } </code></pre> <p>Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.21022.08 for 80x86 Copyright (C) Microsoft Corporation. All rights reserved.</p> <p>try.cpp C:\Program Files\Microsoft Visual Studio 9.0\VC\INCLUDE\xlocale(342) : warning C 4530: C++ exception handler used, but unwind semantics are not enabled. Specify /EHsc</p> <p>try.cpp(9) : error C2664: 'fprintf' : cannot convert parameter 1 from 'std::ostr eam' to 'FILE *' No user-defined-conversion operator available that can perform this conv ersion, or the operator cannot be called</p> <p>try.cpp(10) : error C2664: 'fprintf' : cannot convert parameter 1 from 'std::ost ream' to 'FILE *' No user-defined-conversion operator available that can perform this conv ersion, or the operator cannot be called</p> <p>try.cpp(16) : error C2664: 'fprintf' : cannot convert parameter 1 from 'std::ost ream' to 'FILE *' No user-defined-conversion operator available that can perform this conv ersion, or the operator cannot be called</p> <p>what is wrong?</p> http://stackoverflow.com/questions/642618/compile-error-using-cl-exe-visual-studio-2008-for-this-cpp-code/642649#642649 6 Answer by Neil Butterworth for Compile error using cl.exe (Visual Studio 2008) for this cpp code Neil Butterworth 2009-03-13T13:17:18Z 2009-03-13T13:17:18Z <p>You are mixing up C++ and C output styles. Change your fprintfs to look like:</p> <pre><code>cout &lt;&lt; "value is: " &lt;&lt; i &lt;&lt; "\n"; </code></pre> http://stackoverflow.com/questions/642618/compile-error-using-cl-exe-visual-studio-2008-for-this-cpp-code/642654#642654 0 Answer by leppie for Compile error using cl.exe (Visual Studio 2008) for this cpp code leppie 2009-03-13T13:17:50Z 2009-03-13T13:17:50Z <p>You are mixin C and C++ incorrectly. Use only 1, and stick to it untill you learn what the difference between the types are.</p> http://stackoverflow.com/questions/642618/compile-error-using-cl-exe-visual-studio-2008-for-this-cpp-code/642659#642659 2 Answer by bb for Compile error using cl.exe (Visual Studio 2008) for this cpp code bb 2009-03-13T13:19:01Z 2009-03-13T13:19:01Z <p>std::cout has no FILE* type.</p> http://stackoverflow.com/questions/642618/compile-error-using-cl-exe-visual-studio-2008-for-this-cpp-code/642665#642665 4 Answer by Mykola Golubyev for Compile error using cl.exe (Visual Studio 2008) for this cpp code Mykola Golubyev 2009-03-13T13:20:01Z 2009-03-13T13:20:01Z <pre><code>std::fprintf(stdout, ) </code></pre> http://stackoverflow.com/questions/642618/compile-error-using-cl-exe-visual-studio-2008-for-this-cpp-code/642672#642672 1 Answer by gimel for Compile error using cl.exe (Visual Studio 2008) for this cpp code gimel 2009-03-13T13:20:56Z 2009-03-13T13:20:56Z <p>Alternately, change your includes to:</p> <pre><code>#include &lt;stdio.h&gt; #include &lt;string.h&gt; </code></pre> <p>and the <code>fprintf()</code> calls to</p> <pre><code>fprintf(stdout,"abc:\n"); </code></pre> <p>Then you're talking <code>C</code>.</p> http://stackoverflow.com/questions/642618/compile-error-using-cl-exe-visual-studio-2008-for-this-cpp-code/642750#642750 0 Answer by J.F. Sebastian for Compile error using cl.exe (Visual Studio 2008) for this cpp code J.F. Sebastian 2009-03-13T13:39:23Z 2009-03-13T13:39:23Z <p>Here's your code without compilation errors:</p> <pre><code>#include &lt;iostream&gt; #include &lt;string&gt; int main() { using namespace std; for(int i = 0; i &lt; 10; i++) cout &lt;&lt; i &lt;&lt; '\n'; cout &lt;&lt; "abc" &lt;&lt; endl; string s; cin &gt;&gt; s; if(s == "resume") for(int i = 0; i &lt; 10; i++) cout &lt;&lt; i &lt;&lt; '\n'; return 0; } </code></pre>