Arkadaşlar C programla dilinden anlayanlar lutfen Bu programı başka yollardan yazabilirlermimi farklı bir yoldan ? Şimdiden tşkrler #include <stdio.h> #include <stdlib.h> #include <conio.h> #include <time.h> #define SIZE 10 typedef struct KARISIKSAYI { /*tip = 0 ise int, tip = 1 ise float, tip = 2 ise double kullanılacak */ int tip; int silindi; union{ int i; float f; double d; }x; }KARISIKSAYI; int i_rand(){return rand()%10;}