1 2 3 4 5 6 7 8 9
#include <stdio.h> enum rakamlar {f0,f1,f2=-1} rakam; int main() { printf("%d %d %d\n",f0,f1,f2); return 0; }