Compile error using cl.exe (Visual Studio 2008) for this cpp code - Stack Overflow most recent 30 from stackoverflow.com2009-12-14T22:14:07Zhttp://stackoverflow.com/feeds/question/642618http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/642618/compile-error-using-cl-exe-visual-studio-2008-for-this-cpp-code0Compile error using cl.exe (Visual Studio 2008) for this cpp codeAnirudh Goel2009-03-13T13:10:50Z2009-03-14T17:46:55Z
<p>I'm getting compile error in this code</p>
<pre><code> #include<iostream>
#include<cstdio>
#include<string>
using namespace std;
void main(int argc,char *argv[])
{
int i;
for(i = 0;i<10;i++)
fprintf(cout,"%d\n",i);
fprintf(cout,"abc:\n");
string s;
cin>>s;
if(s == "resume") {
for(i = 0;i<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#6426496Answer by Neil Butterworth for Compile error using cl.exe (Visual Studio 2008) for this cpp codeNeil Butterworth2009-03-13T13:17:18Z2009-03-13T13:17:18Z<p>You are mixing up C++ and C output styles. Change your fprintfs to look like:</p>
<pre><code>cout << "value is: " << i << "\n";
</code></pre>
http://stackoverflow.com/questions/642618/compile-error-using-cl-exe-visual-studio-2008-for-this-cpp-code/642654#6426540Answer by leppie for Compile error using cl.exe (Visual Studio 2008) for this cpp codeleppie2009-03-13T13:17:50Z2009-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#6426592Answer by bb for Compile error using cl.exe (Visual Studio 2008) for this cpp codebb2009-03-13T13:19:01Z2009-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#6426654Answer by Mykola Golubyev for Compile error using cl.exe (Visual Studio 2008) for this cpp codeMykola Golubyev2009-03-13T13:20:01Z2009-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#6426721Answer by gimel for Compile error using cl.exe (Visual Studio 2008) for this cpp codegimel2009-03-13T13:20:56Z2009-03-13T13:20:56Z<p>Alternately, change your includes to:</p>
<pre><code>#include <stdio.h>
#include <string.h>
</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#6427500Answer by J.F. Sebastian for Compile error using cl.exe (Visual Studio 2008) for this cpp codeJ.F. Sebastian2009-03-13T13:39:23Z2009-03-13T13:39:23Z<p>Here's your code without compilation errors:</p>
<pre><code>#include <iostream>
#include <string>
int main()
{
using namespace std;
for(int i = 0; i < 10; i++)
cout << i << '\n';
cout << "abc" << endl;
string s;
cin >> s;
if(s == "resume")
for(int i = 0; i < 10; i++)
cout << i << '\n';
return 0;
}
</code></pre>