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
~2K People Reached
About Me

loving my self

Interests
Programming, Working out.
Favorite Forums
Favorite Tags
c++ x 17
Member Avatar for diana_pro

HI, I started to play with files in C++ and I have a little problem. Here is my c++ project and the problem: main.cpp [CODE]#include <iostream> #include "resource.h" #include <windows.h> #include <stdio.h> #include <fstream> using namespace std; int main() { HRSRC hRsrc; hRsrc = FindResource(NULL, MAKEINTRESOURCE(IDR_MYTEXTFILE), TEXTFILE); if (hRsrc == …

Member Avatar for Prosammer
0
145
Member Avatar for Prosammer

i was just wondering why can't i point something to void. without getting any errors like for example [ICODE] class cs_PureFunction { public: virtual void DoSomething() = 0; virtual bool CheckThings() = 0; }; class cs_EnableOverrideAction: public cs_PureFunction { public: virtual void DoSomething() { puts("Test123"); } virtual bool CheckThings() { …

Member Avatar for Prosammer
0
187
Member Avatar for bigdan182

Hi I am writing a football tournament sim and cannot get the main of my program to deal with the structures which are defined in the header. Here is the relevent code: header file [CODE] #include <math.h> #include <iostream> #include <array> #include <string> using namespace std; struct team{ string name; …

Member Avatar for NathanOliver
0
190
Member Avatar for lexusdominus

i wrote this a couple of years ago when i was just starting to program. i didnt know any professional programmers and wanted to learn, so just experimented with the language. maybe it will give you an insight into how people program for fun. feel free to add to it, …

Member Avatar for mike_2000_17
0
135
Member Avatar for Prosammer

How do i get the threadid of a window. I know it explains a bit "(HANDLE Thread)" but still how? Regards, Prosammer

Member Avatar for Prosammer
0
884