Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

24
votes
9answers
1k views

What _did_ the C operators /\ and \/ do?

Anyone can "declare" ones own operators in C.... that is if one is a C compiler guru and has the source code to the C compiler! ;-) Further questions to puzzle: How are these operations done in ...
6
votes
5answers
3k views

What is “pass-by-name” and how does it work exactly?

I've check wikipedia, and googled but I still can't wrap my mind around how pass-by-name works in ALGOL 60. Thanks!
4
votes
1answer
253 views

How does the “Man Or Boy” Knuth test work?

Can anyone explain how the Man Or Boy Test returns a value of -67? I tried in vain to write down the result, or trace it with a debugger. Any help would be appreciated. A list of different ...
3
votes
1answer
126 views

wanted: working Bose-Hibbard Sort implementation preferably in C-like language

Please point me to code for a working Bose-Hibbard Sort implementation, preferably in a C-like language. I'm trying to implement the algorithm in C#, but I don't have a copy of the algorithm. The ...
2
votes
6answers
493 views

Was Algol ever used for “mainstream” programming?

I know that Algol language is super-uber-extremely important as a theoretical language, and it also had a variety of implementations as per Wikipedia. However, what's unclear is, was Algol (pure ...
2
votes
4answers
280 views

compilers for languages from 1950's and 1960's

i am trying to find the best compilers (if they are actually available) for the following languages: ALGOL 60 TRAC TELCOMP Superplan BACAIC i don't know if any of these are still around, but it ...
1
vote
0answers
78 views

Mutual exclusion problem

The following solution to the mutual exclusion problem, discussed earlier, published in 1966 by H. Hyman in the Communications of the ACM. It was listed, in pseudo Algol, as follows. 1 Boolean ...