retagged by
231 views

1 Answer

Answer:

Related questions

2 votes
2 votes
2 answers
2
GO Classes asked Apr 30, 2023
194 views
What will be printed by following $\text{C}$ code?int a[7] = {0, 1, 2, 3, 4, 5, 6}; int *p = &a[3]; p += 2; *p += 2; printf("%d", *p++);$6$$7$$8$$9$