Ask your own question, for FREE!
Computer Science 8 Online
OpenStudy (anonymous):

#include int data[] = {1, 3, 5, 2, 4, 6, 7, 9, 8, 10}; int sum; int i; int done; void setup() { } void loop() { } int main() { setup(); while (!done) { loop(); } printf("Sum = %d\n", sum); return 0; }

OpenStudy (anonymous):

i will print sum =0

OpenStudy (anonymous):

Sum in unintialized. I'd expect some garbage value.

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!