NO

Author Topic: Identifier $  (Read 2397 times)

Sanguis

  • Guest
Identifier $
« on: September 02, 2008, 10:06:27 PM »
Hi,
I'm using Pelles C version 5.00.
Try this:

Code: [Select]
int $ = 5;
Sorry to bug you :D

Have a nice day!

JohnF

  • Guest
Re: Identifier $
« Reply #1 on: September 03, 2008, 08:15:40 AM »
$ shouldn't be allowed I think.

John
« Last Edit: September 03, 2008, 08:23:22 AM by JohnF »

Offline Pelle

  • Administrator
  • Member
  • *****
  • Posts: 2266
    • http://www.smorgasbordet.com
Re: Identifier $
« Reply #2 on: September 23, 2008, 06:11:24 PM »
A number of C compilers support $, so I do the same as of 5.0.

Similar to this, I guess:
Code: [Select]
int _ = 5;
/Pelle