Contact: aviboots(AT)netvision.net.il
41,593 questions
54,235 answers
573 users
#include <iostream> using namespace std; int main() { int a = 3, b = 9, c = 5; int arr[] = {a, b, c}; cout << arr[0] << endl; cout << arr[1] << endl; cout << arr[2] << endl; return 0; } /* run: 3 9 5 */