Previous: 10.7 Summary
Up: 10 Sorting and Searching
Next: 10.9 Problems
Previous Page: 10.7 Summary
Next Page: 10.9 Problems
Find and correct errors if any.
main()
{ int x[10];
x[10] = {12, 23, 45};
}
main()
{ int x[10];
x = {12, 23, 45};
}
main()
{ int i, x[10];
for (i = 0; i < 10; i++)
x = 0;
}