Thread
scalar comma operator
(25 answers)
Opened by
KurtZ
at
2008-12-31 02:05
ptk
2008-12-31 13:32
User since
2003-11-28
3645 Artikel
ModeratorIn
Sieht so aus:
Code: (
dl
)
1
2
3
4
5
main() {
int j;
j = (1, 314, 4711);
printf("j=%d\n", j);
}
Ergibt j=4711.
View full thread
scalar comma operator