// Pantea Aria // 20/10/2025 // pointers // Write a program that: // Declares and initializes an array of 5 integers (e.g., {1, 2, 3, 4, 5}). // Uses the name of the array as a pointer and // doubles the value of each element using pointer arithmetic // Prints the array before and after doubling the values, using the pointer (not array indexing). #include int main() { int numbers[5] = {1, 2, 3, 4, 5}; // {2, 4, 6, 8, 10} return 0; }