NO

Author Topic: Ellipsis  (Read 2311 times)

boral

  • Guest
Ellipsis
« 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?
« Last Edit: February 22, 2012, 05:49:55 PM by boral »

CommonTater

  • Guest
Re: Ellipsis
« Reply #1 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.
 
 
« Last Edit: February 22, 2012, 06:57:38 PM by CommonTater »

boral

  • Guest
Re: Ellipsis
« Reply #2 on: February 23, 2012, 11:43:57 AM »
Thank you CommonTater for the answer.