In a C standard though he would've said (0, by that logic. Also those open parentheses are cringeworthy :s
Try
Code:
(0, 1, 2, 3, 4, 5, 6, 7, 8, 9);
And just for completeness' sake, maybe those could be polymorphic arguments of a function…?
Code:
foo(0, 1, 2, 3, 4, 5, 6, 7, 8, 9);
In reality though, such a concatenation would be better suited as some representation of a range of integers, so maybe we could instate this with a for loop (we'll say less than ten as an example):
Code:
for(i = 0; i < 10; i++) {
// ???
}
Wait, what were we counting for again?