Question 3


main()
{
    int x;
    int table[3][5] = {
        {1, 2, 3, 4, 5},
        {6, 7, 8, 9, 10},
        {5, 4, 3, 2, 1}
    };

    x = table[2][4] + table[1][1] + table[1 - 1][1 + 1];
}

What is the final value of  x

x  =  

SKIP THIS QUESTION