Question: What is the screen output of the code below 11 int main() 12 { int dizi[4] = {3, 2, 12, 20}; int a,b,c; a =

What is the screen output of the code below

11 int main() 12 { int dizi[4] = {3, 2, 12, 20}; 

11 int main() 12 { int dizi[4] = {3, 2, 12, 20}; int a,b,c; a = ++dizi[1]; 13 14 15 16 b 17 C 18 19 20 } dizi [1]++; dizi[a++]; printf("%d,%d, %d",a,b,c); return 0;

Step by Step Solution

3.52 Rating (166 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

Step by Step 1 int dizi4 3 2 12 20 This initializes an array dizi with 4 elements 2 int ... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!