Computer Science, asked by sarannpl2001, 10 months ago

3 Comment on the following two operations,
int *al = {{1, 2, 3}, {1, 2, 3, 4}}; //-1
int b[4][4] = {{1, 2, 3}, {1, 2, 3, 4}};//-2
Marks: 1
Negative Marks: 0
1 will work, 2 will not
1 and 2, both will work​

Answers

Answered by ıtʑFᴇᴇʟɓᴇãᴛ
0

tex

huge

bf

int *al = {{1, 2, 3}, {1, 2, 3, 4}}; //-1

int b[4][4] = {{1, 2, 3}, {1, 2, 3, 4}};//-2

Marks: 1

Negative Marks: 0

1 will work, 2 will not

1 and 2, both will work

Similar questions