User profile: Gulshan Singh

User info
User name:Gulshan Singh
History
Joined:
Number of posts:46
Latest posts:

Subclass with specific method argument
I don't see what's wrong with this: [code]class MyFitnessClass : public MyAbstractClass { virtual...

Small issue need help
A linker error means the issue is not with the actual code but the files and method definitions. Pos...

using an inline function to calcualte stock value
Yes, you would have the function call in a loop. To store the value, simply make a float variable ou...

problem about void function
You're passing a to the function by value, so it makes a copy, increments that copy, and then the co...

A program to display Nth Prime number
First of all format your code using the <> button so it's easier to read. I'll lay out the general ...