visual-studio-2017 tag

3 questions


1 answers
27 views
0
In c++, you get an error writing and building along with the example 'Normal Person Class with Deep Copy Producers' ;;

#include <iostream>#include <cstring>using namespace std;class Person { char* name; int id;public: Person(int id, char* name); Person(Person& person); ~Person(); void changeName(const ...

2 years ago

1 answers
26 views
0
Difference between solution and project in visual studio?

I am a sophomore majoring in computer science. I submitted the source code project again because I submitted only the solution and did not submit the project while doing the assignment.It's definitely...

2 years ago

1 answers
34 views
0
Visual Studio Console Issues

int oddCheck(int *param) { for (int i = 0; i < 10; i++) { if (param[i] % 2 == 1) { printf(%d , param[i]); } } printf(\n);}int evenCheck(int *param) { for (int i = 0; i < 10; i++) { if (param...

2 years ago

© 2024 OneMinuteCode. All rights reserved.