开发者

What does the 'where' keyword mean in C?

开发者 https://www.devze.com 2022-12-22 09:57 出处:网络
I stumbled across this C code today. Can anyone tell me what the \'where\' keyword means: *y = sy + exit->y + (where * (entry->y + esy - exit->y));

I stumbled across this C code today. Can anyone tell me what the 'where' keyword means:

*y = sy + exit->y + (where * (entry->y + esy - exit->y));

Edit:

Ah.. my bad. It is just a variable name. VC++ highlighted it as though it 开发者_如何学编程was a keyword though.


It's just a variable name...

(The where is highlighted as blue here only because C# supports where as a keyword in LINQ.)


Here is a list of C's keywords. There is no where keyword in C, it's just a variable (or perhaps a macro).

0

精彩评论

暂无评论...
验证码 换一张
取 消