18 lines
250 B
Plaintext
18 lines
250 B
Plaintext
|
int :: printf(char* format);
|
||
|
|
||
|
enum fruit { apple, pear, shallot };
|
||
|
|
||
|
enum basket {
|
||
|
abc = 15,
|
||
|
def
|
||
|
};
|
||
|
|
||
|
enum basket thing;
|
||
|
enum fruit stuff;
|
||
|
|
||
|
int :: main() {
|
||
|
int temp;
|
||
|
temp = apple + pear + abc;
|
||
|
printf("%d\n", temp);
|
||
|
return (0);
|
||
|
}
|