Forum: C++ Jul 12th, 2007 |
| Replies: 47 Views: 65,159 Using an example will help.
For instance let a = 6 and b = 13.
a = a + b
Now a = 19 and b is unchanged at 13.
b - a - b or b = 19 - 13
Now a = 19 (unchanged) and b = 6.
a = a - b or a... |
Forum: C# Jun 27th, 2007 |
| Replies: 2 Views: 961 As a software engineer with over a dozen years of design, implementation, and deployment under my belt, I look for the freedom to decide. I want my voice and experience to be counted during the... |
Forum: C++ Jun 22nd, 2007 |
| Replies: 47 Views: 65,159 A performance tip that has served me well with C++, C#, Java, VB, and scripting languages is counting backwards. When using a comparison in a loop (presumably for termination purposes), if possible,... |
Forum: C# Jun 13th, 2007 |
| Replies: 4 Views: 2,136 1. Get all the file names with something like this, where 'parenFolder" is the top directory of the notepad files and extension is "*.txt".
//on exit, "files" will contain the desired list... |
Forum: MS SQL May 3rd, 2007 |
| Replies: 9 Views: 8,108 Well, I definitely have no problem with finding the logic and or a generic solution to a problem. Problem solving is why I became a software engineer, but concerning this particular problem, I... |
Forum: MS SQL May 2nd, 2007 |
| Replies: 9 Views: 8,108 You shouldn't rely on a specific record being in a specific location in a DBMS (unless you manage the database and its order); no database I know of guarrantees this. Seeking this type of solution... |