Pelles C forum

C language => Beginner questions => Topic started by: boral on February 22, 2012, 05:43:36 PM

Title: Ellipsis
Post by: boral on February 22, 2012, 05:43:36 PM
Can ellipsis be used in C ?
i.e. can we use 1, 2,......,n in a C program?
If yes, how?
Title: Re: Ellipsis
Post by: CommonTater on February 22, 2012, 06:38:20 PM
No.  C doesn't support constructs like that... Pascal did, C++ does (sort of), D does... but not C.

Title: Re: Ellipsis
Post by: boral on February 23, 2012, 11:43:57 AM
Thank you CommonTater for the answer.