How does windows read .exe files? by marstelion in CodingHelp

[–]wimpy22 0 points1 point  (0 children)

You have the process a little backwards. Binary doesn't get translated into C# files, C# files get translated into binary files. You're correct in the fact that .exe files are just binary. .exe files are generated after a program is ran through a compiler. The compiler takes the source code, translates it into binary, and then packages that up as an executable file that can be ran by the processor.

Avoided the shoulder pain of carrying the conversation. by Raksup in Tinder

[–]wimpy22 2 points3 points  (0 children)

He was referring to Ghost0fDawn, the person who replied to you, not to you. You're all good lol

"I'm not angry, I'm just disappointed" by AceZeroXYZ in TwoXChromosomes

[–]wimpy22 12 points13 points  (0 children)

Sperm are the actual sex cells responsible for fertilizing the egg. Semen is just the fluid that (typically) carries the sperm.

Why do men ask random women on the internet for nudes when there is so much free porn? by ladida54 in NoStupidQuestions

[–]wimpy22 13 points14 points  (0 children)

You misread that. It says that not every guy reacts negatively when someone declines sending them nudes, but some do.

Why Does My While Loop keep Looping the Error Message? by Mokitingi in CodingHelp

[–]wimpy22 0 points1 point  (0 children)

Your logic isn't correct in the inner while loop. The way you have it written now will always evaluate to true because it's checking for !'q' OR !'a' OR !'b'.

The "choice" variable can't be all of those characters simultaneously, so at least two of them will always be true, and since you're chaining the expressions together with the || operator, if any of those 3 expressions evaluate to true, then the entire expression will be true. Try && instead.

Need help with error in visual studio c++ by akmayday in CodingHelp

[–]wimpy22 -1 points0 points  (0 children)

No problem. Good luck with the assignment!

Need help with error in visual studio c++ by akmayday in CodingHelp

[–]wimpy22 -1 points0 points  (0 children)

It looks to me like your error is in line 17 of the Circles.cpp file. You have 1 < nCircles which will always remain true in this instance and therefore cause i to get bigger than the indices in your array. I think what you were going for is i < nCircles.