In gcc, I can write foo ? : bar which is a shorthand form of foo ? foo : bar but I see that K&R doesn't mention it.
Is this something I should rely on, defined in some standard? Or just an (evil) gcc extension I should avoid?
|
In gcc, I can write Is this something I should rely on, defined in some standard? Or just an (evil) gcc extension I should avoid? |
|||||
|
|
This is a GCC extension by the name: It is not standard c.Using
Depends on your requirements, If your code does'nt need to run on any other compiler implementation other than GCC then you can use it. However, if your code is to build on across different other compiler implementations then you should not use it. Anyhow, One should aim to write as much intuitive and readable code as possible given that I would always suggest avoiding such (ugly)constructs. |
|||||
|
|
This is a GCC extension. It's not part of the C standard, but the GCC compiler lets you use it. See its documentation for details, and be mindful of its behavioural differences to the "equivalent" ternary expression. |
|||
|
|
|
This is an extension included in GCC. It might not work if not compiling with GCC. So I would recommend to avoid using this type of shortcut, or use a |
|||
|