20 lines
269 B
C
20 lines
269 B
C
#include <stdio.h>
|
|
|
|
enum designFlags {
|
|
BOLD = 1,
|
|
ITALICS = 2,
|
|
UNDERLINE = 4
|
|
};
|
|
|
|
int main() {
|
|
int myDesign = BOLD | UNDERLINE;
|
|
|
|
// 00000001
|
|
// | 00000100
|
|
// ___________
|
|
// 00000101
|
|
|
|
printf("%d\n", myDesign);
|
|
|
|
return 0;
|
|
} |