Tagged Questions

5
votes
18answers
718 views

Why the name main for function main()

Why the function name main() is retained in many languages like C, C++, Java? Why not any other names for that function? Is there any common structure for all these 3 main() (in C, C++, Java)
8
votes
4answers
183 views

How was the first compiler written?

I heard about the chicken and the egg and bootstrapping. I have a few questions. What wrote the first compiler that converted something into binary instructions? Is assembly compiled or translated …
5
votes
9answers
389 views

Are really great programmers known to use unit testing?

I was wondering if really great programmers (Knuth, Kernighan, Torvalds, etc) are advocates of extensive unit testing. I can imagine large projects they've worked on adding them to deal with …
1
vote
0answers
134 views

Where can I download stock historical data for 5 years? [closed]

Where can I download stocks' historical data for 5 years for the stock markets: NASDAQ, DJIA, FTSE100, NIKKEI ? Thanks.
5
votes
5answers
160 views

Is there a defined and accepted standard SQL language?

I remember in college taking a database class where we, the students, were given the ability to choose our Database Management System. Being my first experience with databases I remember being …
0
votes
2answers
89 views

Programming language named “C Set 2”

Does anyone know anything about a programming language named "C Set 2" which is referenced in the SEI statistics on function point metrics? I tried to google something about this programming language …
2
votes
2answers
54 views

Is there a tool for creating historical report out of j/nunit results

Looking for a way to get a visual report about: overall test success percentage over time (information about if and how quickly tests are going greener) visualised single test results over time (to …
6
votes
14answers
742 views

Why are so many web languages interpreted rather than compiled?

Why didn't languages such as C end up being using for web dev? Surely the speed increases from being compiled would be useful for heavy load sites?