/* Example taken from http://www.ihypress.net/programming/c/prog.php?chap=07&pgm=01 Problem: This program initializes an array with all cells filled with the same value (0.0 in this example) */ #include #define SIZE 100 /* size of the array */ #define VALUE 0.0 int main (void) { double x[SIZE]; int i; /* initializing the array with the same value */ for (i=0; i