CJCoding With Joseph
← Back to Question List

Select topics to narrow your question pool, then enable Random to jump to a random question matching your filters.

Topics:
C Quiz #40

Summing Array Elements

mediumArrays

What does this code print?

📄 Code

1int a[] = {10, 20, 30, 40};
2printf("%d", a[2] + a[0]);