Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

115
votes
15answers
6k views

Hello world in C with no semi-colons?

I recently heard this was used as an interview question. I suspect there is a very simple answer; I must be over-thinking it. Can you write Hello World in C without using any semi-colons? If ...
43
votes
11answers
6k 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'm also interested ...
21
votes
5answers
1k views

What are the rules for Javascript's automatic semicolon insertion?

Well, first I should probably ask if this is browser dependent. I've read that if an invalid token is found, but the section of code is valid until that invalid token, a semicolon is inserted before ...
20
votes
7answers
1k views

Why use semicolon?

Are there any reasons, apart from subjective visual perception and cases where you have multiple statements on the same line, to use semicolon at the end of statements in Javascript? It looks like ...
17
votes
7answers
3k views

Best practice for semicolon after every function in javascript?

I've seen different developers include semicolons after functions in javascript and some haven't. Which is best practice? function weLikeSemiColons(arg) { // bunch of code }; or function ...
11
votes
2answers
337 views

What does the leading semicolon in JavaScript libraries do?

In several JavaScript libraries I saw this notation at the very beginning: /** * Library XYZ */ ;(function () { // ... and so on While I'm perfectly comfortable with the "immediately executed ...
10
votes
4answers
1k views

JavaScript: When should I use a semicolon after curly braces?

Many times I've seen a semicolon used after a function declaration, or after the anonymous "return" function of a Module Pattern script. When is it appropriate to use a semicolon after curly braces?
10
votes
9answers
882 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 parts ( like ...
9
votes
12answers
474 views

What is semicolon in c++?

Roughly speaking in C++ there are operators (+ , - * [] new ...), identifiers (names of classes, variables, functions,...), const literals (10, 2.5, "100",...), some keywords (int, class, typename, ...
8
votes
3answers
570 views

When would you put a semicolon after a method closing brace?

I've been programming in Java for a while, and I've just come across this syntax for the first time: public Object getSomething(){return something;}; What's interesting me is the final semicolon. ...
7
votes
3answers
198 views

Vim smart insert semicolon

Is there a Vim plugin that can handle smart semicolon insertion, like the one in Eclipse? Example (pipe character is insertion cursor): foobar(|) I type a semicolon: foobar();| Similarly: ...
7
votes
6answers
469 views

Does C# allow double semicolon ; ; if so, are there any special ways?

I am writing a statement and it compiles, but the compiler [VS] never tells me that I put the semicolon two times. This means in ASP.NET MVC 3 return Json(mydata);; return Json(mydata); Both of ...
6
votes
2answers
146 views

When/why did Lisps start using semicolons for comments?

What is the history of the semicolon being used for comments in Lisp and its dialects? A guy in our group thought Clojure's use of the semicolon was an in-your-face to Java & Co. at first. I ...
6
votes
3answers
724 views

Can you use semicolons in Ruby?

When learning Ruby, I noticed that in all the examples there are no semicolons. I am aware that this is perfectly fine as long as each statement is on its own line. But what I am wondering is, can you ...
5
votes
2answers
94 views

Semicolons superfluous at the end of a line in shell scripts?

I am editing this shell script (by somebody else) which contains the following.´: case $1 in 0 ) echo $1 = 0; OUTPUT=3;; 1 ) echo $1 = 1; OUTPUT=4;; 2 ) echo $1 = 2; ...
5
votes
7answers
352 views

javascript open brace in the same line

I remember there is a convention/recommendation to put opening brace in the same line, because the way Javascript add semicolon or something. //OK function blah(){ }; //Probably not OK function ...
5
votes
6answers
213 views

PHP, C++, etc. syntax explanation

Why is it that in most programming languages it is required to have a semicolon after statements but not after things like if elseif and else. Do the compilers all look out for newlines? If that's ...
5
votes
3answers
301 views

Is semicolon really needed after declarations in x++?

As said in the book Microsoft Dynamics AX 2009 Programming: Getting Started it´s needed to put semicolons after declarations in x++: The extra semicolon after the variable declaration is ...
4
votes
1answer
202 views

Why do I need semicolons after these imports?

I never really used Traits much in Scala so far, and I want to change this. I have this code: import tools.nsc.io.Path import java.io.File trait ImageFileAcceptor extends FileAcceptor { override ...
4
votes
4answers
272 views

Should I put a Semicolon (;) when I use onclick=“”

Should I put a Semicolon (;) when I use onclick="" <p onclick="closeLightBox();">Click<p> or <p onclick="closeLightBox()">Click<p>
4
votes
1answer
284 views

IntelliJ and the semi-colon character

I'm finally making the voyage back to IntelliJ via Eclipse. Currently my Eclipse is set up so that if I currently have a statement such as this (where ^ denotes where my cursor currently sits): ...
3
votes
1answer
104 views

In Bash, when do lines need to be terminated with a semi-colon? [closed]

Possible Duplicate: Semicolons superfluous at the end of a line in shell scripts? In which situations in Bash scripts do you need a semicolon at the end of a line? I had thought it was just ...
3
votes
7answers
296 views

Why is a semicolon required at end of line?

Why does this work: a = [] a.push(['test']); (function() {alert('poop')})() But this gives the error "number is not a function": a = [] a.push(['test']) (function() {alert('poop')})() The only ...
2
votes
7answers
108 views

Semicolon after double slash in C

I have a question about comments in C language. When we write for example //this is the first step This means a comment. But when we write //this is the first step; Does this also mean a ...
2
votes
3answers
120 views

What is the logic of C++ punctuator usage?

I am trying to discern the logic behind punctuator usage in C++. Particularly the semicolon. This is my progress so far, with some questions: A declaration introduces a type, class or object into a ...
2
votes
3answers
106 views

Why no semicolon at the end of js expression in javascriptmvc app?

I am starting to learn javascriptmvc, and in code samples, I see code without semicolons at the end of expressions. Does this count on automatic semicolon insertion or am I missing something? code ...
2
votes
3answers
229 views

Use of ({ … }) brackets in macros to swallow the semicolon

Often, in macros, you will see people use a do { ... } while(0) to swallow the semicolon. I just came across an example where they use ({ ... }) instead, and it seems to not only swallow the ...
2
votes
4answers
166 views

Why do some languages need semicolons?

I understand that semicolons indicate the end of a line in languages like Java, but why? I get asked this a lot by other people, and I can't really think of a good way to explain how it works better ...
2
votes
1answer
228 views

.NET Uri class query missing the semicolon reserved character, simple workarounds?

This http://msdn.microsoft.com/en-us/library/system.uri.query.aspx and this ietf. org/rfc/rfc1738 .txt (pardon the formatting, can't post more than one url) suggest that the .Net Uri class does not ...
2
votes
3answers
422 views

What is the most efficient way to find missing semicolons in VS with C++?

What are the best strategies for finding that missing semicolon that's causing the error? Are there automated tools that might help. I'm currently using Visual Studio 2008, but general strategies for ...
2
votes
4answers
159 views

How to retrieve data and not entire lines in C?

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;age=35 city=New ...
2
votes
8answers
1k 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 some conventional ...
1
vote
6answers
98 views

Does a semi-colon matter in JavaScript [closed]

Possible Duplicates: do we need semicolon at the end Why use semicolon? Are semicolons needed after an object literal assignment in JavaScript? Should I use semi-colons in javascript? ...
1
vote
2answers
76 views

I must be missing something - semicolon error that makes no sense

This is the source of my page. I'm getting a mysterious CS1002 error. Been looking at this for awhile now and can't figure it out. <%@ Page language="C#" validateRequest=false %> <%@ Import ...
1
vote
1answer
220 views

Semi-colon as separator in jasperreport csv editions

I want to makes my jasperrepport's csv documents values separated with semicolons instead of commas. I've found net.sf.jasperreports.export.csv.field.delimiter parameter which works if i adds it on ...
1
vote
2answers
82 views

missing semicolon breaks script unexpectedly

NOTE: originally, i thought the issue was caused by something more complex; i see now (and edited the title and sample code) that the only difference is the presence or absence of a semicolon. that ...
1
vote
1answer
106 views

Matlab: quickly finding lines with missing semicolons [closed]

Possible Duplicate: Is there a way to fix all MATLAB mlint messages at once? If one forgets to place a semicolon at the end of a line, Matlab just prints the output of that line to the ...
1
vote
2answers
99 views

Aptana complaining about JavaScript semicolons

Why does Aptana with either validator (Mozilla or JSlint) complain about this code: var collectionOfValues = { key0 : value0; key1 : value1; key2 : value2; }; It works fine with , but ...
1
vote
5answers
123 views

Javascript: Situation with no semi colon needed?

I am setting up some data to do an ajax post and the code looks like this. var data = {} data.someId= 3; data.anotherId = 4; and this works fine. But why don't I need a semi-colon at the end of the ...
1
vote
2answers
179 views

C# build json string that has semicolons in the data

I am creating a string as follows: string title = "Q:hello"; I then want to embed this string in a JSON string to send to the client. How do I escape the semicolon? I don't want to use a library. ...
1
vote
1answer
187 views

why the semicolon couldn't place in the CommandText of a OracleCommand when C#

why the semicolon(';') couldn't place in the CommandText of a OracleCommand when C# just lick below string sql = "select * from table1;"; OracleCommand oc = new OracleCommand(sql , con); ...
1
vote
4answers
231 views

why must i don't put a semicolon at the end of class declaration in c# [closed]

In c# class declaration class thing { ... } maybe this question is a little silly.Why at the end of class declaration don't inlucde the semicolon.It's really different from c plus plus.you can ...
1
vote
3answers
97 views

I'm getting a semicolon error in PHP and can't understand why it's a problem

This is the error message: Parse error: syntax error, unexpected ';' in /home1/goldensu/public_html/camira/contactForm.php on line 155 and this is the code: $sendMessage = "Someone is ...
1
vote
2answers
470 views

Wix: Set semicolon to CustomActionData

I have a problem with setting data that contains semicolons to CustomActionData property. By default CustomActionData class uses semicolon as DataSeparator and it breake my data, when it contains ...
1
vote
7answers
274 views

php turn line break into semicolon

I have a csv file with this: software hardware educational games languages . . . I need a new csv file with: software;hardware;educational;games;languages;.... How can I do that? I'm doing: ...
1
vote
4answers
142 views

I've heard Javascript inserts “;” automatically and that may cause problems [closed]

Possible Duplicate: What are the rules for Javascript's automatic semicolon insertion? I've also heard that Go insert them too, but they followed a different approach How does ...
1
vote
7answers
766 views

How actually does this if statement work

It has been a popular question that how to print hello world without using semicolon.I know many codes but this one sounds weird because I am unable to get the logic behind it.Please help me know how ...
1
vote
2answers
147 views

Enforce semicolons in my Javascript?

How best does the developer who's decided he likes semicolons at the end of his Javascript statements enforce that expectation technically for himself? I'm using Visual Studio (ASP.NET webapps), but ...
1
vote
1answer
779 views

Add SemiColon to each value (each line) in a cell

i have the following values in a single cell let be A1 1234 567 454 Likewise all the A(N) are filled with values. N various from 1000 to 1500 i want this to get converted as 1234;567;454 Any ...
1
vote
4answers
716 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 every line for ...

1 2