Question: What is the output in the following program? #include using namespace std; int main() { int i, A[4], z[4]; for (i=3; i>=0; i--){ }
What is the output in the following program? #include using namespace std; int main() { int i, A[4], z[4]; for (i=3; i>=0; i--){ } A[i]=i+2; z[1]=1+3; } for (i=0; i
Step by Step Solution
3.47 Rating (154 Votes )
There are 3 Steps involved in it
Lets analyze the provided code to determine the output 1 Variable Declaration The program declares t... View full answer
Get step-by-step solutions from verified subject matter experts
