does anyone know how to convert c program code into c++ program code? I have program written in c code, but need the same program and its functions in c++. I can post code if needed. Thanks.
dinamit875
0
Light Poster
Recommended Answers
Jump to PostWell, C++ can compile almost any C code, except for a few minors differences. Post the code and I'll see.
Jump to PostJust look up printing and getting input using cout<< and cin>>. Also, use
#include <iostream> using namespace std;
That seems to be the only things you really need to change on first glance.
I'm sure William or someone else will correct me if I'm wrong.
Jump to PostCan you post the errors being reported. Thanks.
Jump to PostYou need to put return 0; at the end of main() and remove it from the end of the code. Remove the last 2 lines of the last code you posted.
Jump to PostChange line 55 from
cin >> newTeam, sizeof(newTeam), stdin;
tocin >> newteam;
Line 74 still has the same problem. You fixed your cout statement on the line above, but not the cin line. I'd follow jonsca's advice and read up on cin/cout..Well, short version:
All 34 Replies
William Hemsworth
1,339
Posting Virtuoso
dinamit875
0
Light Poster
Grn Xtrm
84
Posting Pro in Training
dinamit875
0
Light Poster
Grn Xtrm
84
Posting Pro in Training
dinamit875
0
Light Poster
Grn Xtrm
84
Posting Pro in Training
dinamit875
0
Light Poster
Grn Xtrm
84
Posting Pro in Training
dinamit875
0
Light Poster
jonsca
1,059
Quantitative Phrenologist
Team Colleague
Featured Poster
dinamit875
0
Light Poster
jonsca
1,059
Quantitative Phrenologist
Team Colleague
Featured Poster
dinamit875
0
Light Poster
jonsca
1,059
Quantitative Phrenologist
Team Colleague
Featured Poster
dinamit875
0
Light Poster
jonsca
1,059
Quantitative Phrenologist
Team Colleague
Featured Poster
dinamit875
0
Light Poster
jonsca
1,059
Quantitative Phrenologist
Team Colleague
Featured Poster
dinamit875
0
Light Poster
dinamit875
0
Light Poster
jonsca
1,059
Quantitative Phrenologist
Team Colleague
Featured Poster
dinamit875
0
Light Poster
jonsca
1,059
Quantitative Phrenologist
Team Colleague
Featured Poster
dinamit875
0
Light Poster
dinamit875
0
Light Poster
BeyondTheEye
2
Junior Poster in Training
dinamit875
0
Light Poster
jonsca
1,059
Quantitative Phrenologist
Team Colleague
Featured Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.