
please wait
by jubeh
Need Cheap ASP.NET 5 or ASP.NET Core 1.0 Hosting
|
Hi There Somedays ago I read news about ASP.NET 5.0 has been renamed to ASP.NET Core 1.0, N I'm starting a website with ASP.NET that I'm hoping to grow to mi... |
Apr 8, 2016 at 8:55am
[no replies]
|
by RSINGH
Help
|
Question A gallery needs to keep track of its paintings and photographs. It keeps at most 120 artworks on its walls. Each one is described by the following inf... |
Apr 8, 2016 at 12:18am
[1 reply] : Nobody will be doing your homework for you. Attempt it. If you have ... (by cire)
|
by RSINGH
Help
|
Declare a structure variable birthday of type dates. |
Apr 8, 2016 at 12:16am
[1 reply] : struct dates {}; dates birthday; Please read: http://www.cplusplus.... (by cire)
|
by josheir
You should know that...
|
I was wondering if anyone knows of a condensced source of all of the "tricks" with windows/dos that would be beneficial for a C++ programmer. What I mean a... |
Apr 7, 2016 at 11:39pm
[no replies]
|
by josheir
Smart pointers, shared.
|
Well I am studying Smart Pointers and don't understand when a shared pointer points to the same object. That is, why is it pointing to the same object more tha... |
Apr 7, 2016 at 11:23pm
[5 replies] Last: Yes, I do understand. That's what I was wondering Keskiverto. I thou... (by josheir)
|
by passcooall
Adding a value at the end of the array
|
asdxxxd |
Apr 7, 2016 at 10:24pm
[1 reply] : It seems to me some better names would help out. For instance, the fun... (by xismn)
|
by RSINGH
please help with this question
|
Define a structure type Emp that holds and id (integer), a name(20 characters long), and time of type JobTime. |
Apr 7, 2016 at 8:57pm
[1 reply] : http://www.cplusplus.com/doc/tutorial/structures/ (by Chervil)
|
Tetris Loop |
Hello everyone, I'm currently making a tetris using SDL as a part of my coursework and I have a question. My tetris consists of a class TetrisWindow that cont... |
Apr 7, 2016 at 8:56pm
[4 replies] Last: OK I got it, I will create a pointer to a falling piece. Thanks :) As... (by LieForBananas)
|
by technologist
how to recycle pointer
|
The compiler complains about redeclaration of n_ptr, which makes sense. My goal though was to recycle the pointer and use n_ptr again. I need to know how to do ... |
Apr 7, 2016 at 8:05pm
[2 replies] Last: No need to redeclare n_ptr as it is already type * pointer. int *... (by technologist)
|
by MikeyBoy
I need help with c++. please text me.
|
Why can't you discuss the problems here? |
Apr 7, 2016 at 5:39pm
[no replies]
|
by dando46
I need help with a c++ scoreboard issue
|
I am currently doing an assignment that utilizes classes to create a basic score board, this is what I have at the moment: class Team { private: string... |
Apr 7, 2016 at 5:03pm
[1 reply] : cout<< "\t\tHome Possession: \n\n " << scoreboardmain.getPos() << en... (by AbstractionAnon)
|
by Adaptron
Return pointer to a vector of objects as a function return
|
I hope I can explain what I need to do, that is how lost I am. Let's say you have a simple class User. For this purpose let's say really simple class. What I... |
Apr 7, 2016 at 3:29pm
[6 replies] Last: Alright, finally I got this but I am using vector<Class*> structure ra... (by Adaptron)
|
by HotShowers
Help With Outputting data from 2 classes
|
Hello! I am working on a school lab and i have encounted a slight problem... The project is all about using 2 classes, a point class then use that to make a... |
Apr 7, 2016 at 2:57pm
[3 replies] Last: Have you fixed the problem that Thomas 1965 explained to you? it won... (by MikeyBoy)
|
Code that runs code that is entered |
Is it possible to write a code that when you type into it a piece of code (e.g. cout << "Hi!" << endl;) it would run that code. I have wondered if polymorphism ... |
Apr 7, 2016 at 2:30pm
[2 replies] Last: did you mean: https://solarianprogrammer.com/2012/08/14/cling-cpp-11-... (by closed account 48bpfSEw)
|
by tdyoung
Project using pass by value
|
This code is very lengthy, but I almost have it finished and ready to go. I have been testing the code here for awhile now, and i am having a couple small probl... |
Apr 7, 2016 at 2:23pm
[3 replies] Last: When I compile though, I do not get any errors at all. That's beca... (by TheIdeasMan)
|
by cgjones27
I need help with Caesar's Cipher
|
Write a C++ program that asks the user for the name of an input file and translates the contents of that input file using ROT13. Your main function should be re... |
Apr 7, 2016 at 2:02pm
[4 replies] Last: I need help with the variable declarations I guess you are referring... (by keskiverto)
|
Singleton |
Hi , class Example{ private: void Example() { cout <<" constructor "; } public: static Example* obj; static Example* instantiate() { if(!obj) o... |
Apr 7, 2016 at 11:33am
[1 reply] : Delete the function oneMore() (by Moschops)
|
by AKmchtr
problem with asm block in C++
|
I have problem with sending back new value of parameter in function with asm block inside. Why I obtain the result as mod 256 (only low byte) ? #include "S... |
Apr 7, 2016 at 10:42am
[no replies]
|
by titan88
Accessing Object names from Array
|
Using inheritance classes, I am looking to calculate the area of 2d shapes and area and volume of 3d shapes. I am now need to access the array determine the sha... |
Apr 7, 2016 at 5:18am
[2 replies] Last: Hi, Pretty good effort for your code :+) You already have all the st... (by TheIdeasMan)
|
by rabster
How to create a looping thread?
|
I was wondering if it was possible to create a temporary thread that would always loop and execute until the classes destructor is called? So far I have this wh... |
Apr 7, 2016 at 2:47am
[5 replies] Last: > how did you learn all of those tricks? A little bit at a time, over... (by JLBorges)
|