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
~692 People Reached
Favorite Tags
c++ x 4
Member Avatar for random100

Hi, I'm currently a 2nd year undergrad computer engineering student and am planning on becoming a hardware design engineer. I'm finishing up with general physics 2 with calculus, and was wondering what topics in general physics that I learn in college are actually use on the job. Also what skills …

Member Avatar for pogson
0
154
Member Avatar for chiurox

Hi, I'm writing this code where I want to match a string with a signature. A wildcard '?' would mean it can skip 1 character. A wildcard '*' means it can skip 0 to 32 characters. For example, say I have: string "screwed" and a signature "screw?d" These two would …

Member Avatar for Ancient Dragon
0
442
Member Avatar for chiurox

Hi, I'm doing an assignment, where we need to use a class Domain and correctly output the URL address. The given class Domain is like this: [ICODE]class Domain { public: Domain(string lbl) : m_label(lbl) {} string label() const { return m_label; } const vector<Domain*>& subdomains() const { return m_subdomains; } …

Member Avatar for chiurox
0
96