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
Ranked #4K
~706 People Reached
Favorite Forums

6 Posted Topics

Member Avatar for brainfo
Member Avatar for brainfo
0
108
Member Avatar for fatzky_04

Can you be a bit more specific on what it is that you are having difficulty in understanding?

Member Avatar for StuXYZ
0
107
Member Avatar for dakerao

[CODE]// reading a text file #include <iostream> #include <fstream> #include <string> using namespace std; int main () { string line;// define a string for the line buffer ifstream myfile ("example.txt"); if (myfile.is_open())// Check if the file is open { while ( myfile.good() )//Check if the state of the stream is …

Member Avatar for dakerao
0
206
Member Avatar for Neon87

Hello I want to create a web plugin to demonstrate some inverse kinematics algorithms on a basic 3D model on a web browser. I am using OpenGL API and my code is written in C++. I am really new to plugins and I have no clue where to start looking. …

0
38
Member Avatar for Neon87

I have a quick question. I use getline to read from a file and put the line in a string s I call cout<<s and the output is this: "HELLO, PLEASE \n "ENTER" A NUMBER \n" why are the \n ignored and treated as strings? thanks

Member Avatar for Neon87
0
141
Member Avatar for Neon87

Hi I have a question regarding runtime polymorphism. I have for example [CODE]derived A; base *B;[/CODE] and I do this [CODE]B=&A;[/CODE] if A goes out of scope does this mean the pointer B is a bad pointer meaning it does not point to anywhere? If so, does this mean I …

Member Avatar for Narue
0
106

The End.