Programiranje u C-u

  
 

VARIJACIJE U DEKLARIRANJU NIZOVA

        int  numbers[10];
       
        static int numbers[10] = { 34, 27, 16 };

        static int numbers[] = { 2, -3, 45, 79, -14, 5, 9, 28, -1, 0 };

        static char text[] = "Welcome to New Zealand.";

        static float radix[12] = { 134.362, 1913.248 };

        double  radians[1000];