📜  if 语句速记 - C 编程语言代码示例

📅  最后修改于: 2022-03-11 15:04:41.245000             🧑  作者: Mango

代码示例1
if (true)
    printf("This is the shorthand");

// OR

(true) ? (/*run if true*/) : (/*run if false*/);