2
votes
4answers
84 views
How to retrieve data and not entire lines in C?
Hi,
Right now I use:
char record[BUFLEN];
if(fgets(record, BUFLEN, fp) != NULL) {
/* some code */
}
to get lines from input like:
city=Boston;name=Bob;a …
4
votes
6answers
171 views
What is so wrong with having statement/expression delimiters, like semicolons, in a language? [closed]
I am sure this is going to start some kind of religious war. What is so wrong with having semicolons and parenthesis and curly brackets in a programming language. Many modern progr …
-1
votes
8answers
196 views
Why is the semi-colon so inconveniently placed? [closed]
I understand that the QWERTY keyboard was originally designed to slow typing so that typewriters would not get stuck, so inconveniently placed letters are not surprising. However, …
1
vote
4answers
102 views
Utility to auto insert semicolons in javascript source code?
The question is pretty self explanatory.
I'm working with code from multiple developers. Some of whom are inconsistent in their use of semicolons, and I just want them after ever …
0
votes
4answers
196 views
In which language did semicolon first appear as a terminator?
In similar manner to the similar question about generics. What was its first appearance, and how did spread to C?
edit: corrected question based on Jon Skeet's answer (; is a term …
9
votes
9answers
500 views
Why is it bad to put a space before a semicolon?
The perlstyle pod states
No space before the semicolon
and I can see no reason for that. I know that in english there should not be any space before characters made of 2 par …
7
votes
9answers
828 views
Do you recommend using semicolons after every statement in JavaScript?
In many situations, JavaScript parsers will insert semicolons for you if you leave them out. My question is, do you leave them out? I'll post simple Yes/No answers as a poll, but I …
0
votes
4answers
437 views
Convert Semi-Colon Text to Excel
Hi All,
I need to convert a semi-colon delimited file to an Excel.
However, there are some fields that must be removed from the Excel file, and some extra fields to be added. Thes …
1
vote
10answers
270 views
Should I use semi-colons in javascript? [closed]
I've only written a small amount of javascript, that runs embedded in a java application, but tested using QUnit, has been mixed and I've not noticed any problems yet.
Is there som …
1
vote
10answers
421 views
What are the trade-offs between languages that terminate statements with semicolons and those that don’t?? [closed]
Are there any benefits to languages that terminate statements with a semicolon (C, Perl, etc.) compared with those that don't (Python, Ruby, etc.), or vice versa?
(Note to late-co …
