Квиз: изведени и набројиви типови¶
Питање 1¶
Питање 2¶
Питање 3¶
Питање 4¶
Питање 5¶
#include <stdio.h>
int main(void)
{
typedef enum { po, ut, sr, ce, pe, su, ne } d;
d v1 = su, v2 = ne;
printf("Dani vikenda %d, %d", su, ne);
return 0;
}