“C Enum” Code-Antworten

C Enum

enum flag {const1, const2, ..., constN};
SAMER SAEID

C Warum werden Enums verwendet?

#include <stdio.h>

enum suit {
    club = 0,
    diamonds = 10,
    hearts = 20,
    spades = 3
} card;

int main() 
{
    card = club;
	printf("Size of enum variable = %d bytes", sizeof(card));	
	return 0;
}
SAMER SAEID

Ähnliche Antworten wie “C Enum”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen