Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in syntax

What does this PHP syntax mean?

php syntax

In Perl, what is the difference between accessing an array element using @a[$i] as opposed to using $a[$i]?

perl syntax

Ternary operator inside printf

How would you write the equivalent of this C++ loop in Rust

loops syntax rust iteration

LINQ to SQL column has keyword as column name, how to quote/escape

c# linq syntax escaping

Is it possible to turn off support for "and" / "or" boolean operator usage in gcc?

Which is preferable, a = [] or a = new Array()?

Syntax of C++ Template Template Parameters

c++ templates syntax

Is it better to use column aliases with or without the keyword AS?

sql sql-server select syntax

C++ What does 'int x = (anyInt1, anyInt2);' mean? [duplicate]

c++ syntax int

Declaring a variable-length array of fixed-length strings

c arrays pointers syntax

Are "not, and, or, not_eq.." part of the C++ standard? (And why might they be used or avoided in code?)

c++ syntax

What do < and > mean such as implements Comparable<BigInteger>?

What does a syntax like this mean in C#?

c# syntax

Incorrect syntax near '-'

Meaning of lone curly-braced code blocks in C

c syntax formatting

Capitalizing the letter following a dash and removing the dash

What are the distinctions between the various symbols (*,&, etc) combined with parameters? [duplicate]

c++ syntax notation

Python: What do double parenthesis do?

python syntax parentheses

Why is `int ( *array )[10] = malloc(...);` valid C code? [duplicate]

c arrays pointers syntax malloc