Contact: aviboots(AT)netvision.net.il
39,945 questions
51,887 answers
573 users
#include <iostream> int main() { double array[3] = { 1.4, 2.6, 3.14 }; auto [x, y, z] = array; std::cout << x << ' ' << y << ' ' << z; } /* run: 1.4 2.6 3.14 */