Tagged Questions

25
votes
41answers
3k views

GOTO still considered harmful?

Everyone is aware of Dijkstra's Letters to the editor: go to statement considered harmful (also here .html transcript and here .pdf) and there has been a formidable push since that time to eschew the …
1
vote
4answers
70 views

EDITED: How should I separate closely related programs in C#? (user client, admin, and common class library)

I have a suite of programs that are related. One is a user client, one is an admin program, and another is a set of library classes that reside in a Class library. How should I separate the projects? …
0
votes
9answers
376 views

Coding Standards for pure C (not C++)

I come from a java background (from my CS classes) and a semester of C++. I am just finishing up a OpenCV project for my Co-Op that's in pure C, so I'm a bit late in asking this question. What are …
3
votes
4answers
436 views

What is Functional Decomposition?

Functional Decomposition, what is it useful for and what are it's pros/cons? Where are there some worked examples of how it is used?