vote up 5 vote down star
#!/bin/csh

@ cows = 4 - 3 + 1
echo $cows

This simple csh script when run produces "0" for output when I'd expect "2".

~root: csh simple.1
0

I did a bunch of looking and the only thing I could think of was that the "-" was being read as a unary negation rather than subtraction, therefore changing operator precedence and ending up with 4 - 4 rather than 2 + 1. Is this correct? If so, any reason why? If not...help!

Edit: So they're right associative! These operators are NOT right associative in C, are they? Is C-Shell that different from C?

flag

2  
Here's a better question... why does csh use right-associative parse trees and not left? – d03boy Jun 17 at 23:56
4  
... and a better question. why use csh? – Rob Wells Jun 18 at 0:03
I wasn't actually using it. It was a question I was trying to answer for a friend. Here's the new discussion: stackoverflow.com/questions/1010119 – Instantsoup Jun 18 at 0:06

3 Answers

vote up 23 vote down check

While you are expecting the operators to be left associative, they are right associative in csh, so it's evaluated as 4-(3+1)

   -
  / \
 /   \
4     +
     / \
    3   1
link|flag
damn! spent too long finding a link! – Paul Dixon Jun 17 at 23:51
and making ascii art parse trees – Paul Dixon Jun 17 at 23:54
I have been 'scooped' several times for the very same reason. – Brandon E Taylor Jun 17 at 23:54
I gave you +1 anyway, you're about to hit 1000 rep, a nice milestone! – Paul Dixon Jun 17 at 23:56
2  
Among many right answers, the best should be accepted! – Instantsoup Jun 18 at 0:10
show 5 more comments
vote up 2 vote down

Operator grouping. It's reading the operation as 4 - (3 + 1), as opposed to (4 - 3) + 1.

link|flag
vote up 15 vote down

The + and - operators are right-associative in csh. This means that '4 - 3 + 1' is evaluated as '4 - (3 + 1)'.

link|flag
Gave both +1 but Paul's answer has the pretty picture and the nice link. – Instantsoup Jun 18 at 0:07
I gave a Paul a +1 as well. Looks like I need to brush up on my ASCII art. – Brandon E Taylor Jun 18 at 1:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.