Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~4K People Reached
Favorite Tags
Member Avatar for philzz

Using Dev-cpp, a small program compiles but the resultant .exe file does not run. From the DOS command, it runs. When I try from the windows run command , it flashes but immediately goes away.

Member Avatar for skatamatic
0
191
Member Avatar for bamabambhole01

//cube.h #ifndef CUBE_H #define CUBE_H class Cube { public: Cube(); ~Cube(); void setSide(double s); double getSide(); double Area(); double Volume(); void Properties(); private: double Side; }; #endif ´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´ #include <iostream> #include "cube.h" using namespace std; Cube::Cube() { } Cube::~Cube() { } void Cube::setSide(double s) { Side = s <= 0 …

Member Avatar for StuXYZ
0
162
Member Avatar for bamabambhole01

Hii, C++ is new for me. I have two problem A and B , I need solution of A in B and B in A . I made a pointer in A to copy solution of B but when I am doing same for B to A , it is …

Member Avatar for bamabambhole01
0
90
Member Avatar for bamabambhole01

Hii, I have output from computation code called cdof and it is double. i want to creat a file either cdof.log or cdof.dat where i can store values of cdof after each iteration or time step. Please suggest me how to create files using iostream. Thanks

Member Avatar for dmanw100
0
117
Member Avatar for bamabambhole01

Hii everyone !! Can anyone creat class delta.h for me ! Its about dirac delta function ( for 2d) . a simple one. Looking urgently. Regards,

Member Avatar for bamabambhole01
0
3K
Member Avatar for bamabambhole01
Member Avatar for bamabambhole01
0
42
Member Avatar for bamabambhole01

Hello, I am new in c++. Can somebody send me code for class ellipse. I am looking urgently for code. Regards,

Member Avatar for bamabambhole01
0
86