Quantcast
Channel: Comments on: 1.11 — Comprehensive quiz
Browsing latest articles
Browse All 43 View Live

By: fatin_ferrari

Hi everyone! I built up my own code, 2 ways but one of them didn’t work The 1st code-run successfully ——————————- //io.cpp #include int ReadNumber() { using namespace std; cout<> j; return j; }...

View Article



By: jki394

This is what I got… Would this also be considered correct? #include using namespace std; int readNumber() { cout <> x; cout <> y; } void writeAnswer(int x; int y) { cout << x + y; }...

View Article

By: The_Femo

I don’t know whats wrong…I did the quiz…didn’t work……I even copied and pasted the info and got this error >Testing.obj : error LNK2019: unresolved external symbol “void __cdecl WriteAnswer(int)”...

View Article

By: Bogdan

Your pasted code is not same as the code from the solution.

View Article

By: John Fiala

Hey Brad. I realize you posted this a year ago, but it’s a pretty high-up comment and I had the same question. Here’s an answer I found on stack overflow:...

View Article


By: adeater

What does it mean when “[Error] ld returned 1 exit status” ? I’m stuck at this point. I don’t know how to link these source files to run the program. Even if I copy and paste this exactly the same code...

View Article

By: Alam

Hello everyone.i did the quiz as below but it gives an error.let me copy it here and the error it gives #include “stdafx.h” #include int RealNumber() { using namespace std; cout <> x; } void...

View Article

By: rameye

Make sure that you have io.cpp included into your IDE project, or it will not be included in the build and compiled. If io.cpp is not compiled there will be no object file containing the io.cpp...

View Article


By: rameye

Well you have to realize that other programmers may be including your header file also, and they probably already included iostream and set namespace to std in their .cpp file. So doing it for them in...

View Article


By: rameye

A forward declaration is the function definition without the function body. It tells return type, function name, and the number of and type of the function parameters. When you call the function after...

View Article
Browsing latest articles
Browse All 43 View Live




Latest Images