Quick actions

cmd+k|ctrl+k

Navigation

Languages

枚举类型

Snippet info

Language

C

Visibility

public

Author

qwas

Created

2024-05-11T08:25:30.821704Z

Updated

2024-05-11T08:25:30.821704Z

#include <stdio.h>

/**
 * enum 定义,不用等号 =
 *
 */

enum color
{
  Red,
  Green,
  Blue,
  Black,
  White
};

int main()
{
  enum color c1 = Blue;
  printf("Blue is %d",c1);
  return 0;
}
INFO