Explain the code according to comment line shown below. The Explanation must contain the flows of the code. Only Line by line code explanations are Not allowed!!. Only General explanations are NOT accepted. Write screen output[5p] and explain how the code works!!. Explain the code with real example. DO NOT TEST THE CODE IN COMPUTER!! #include //Prototypes void ql(int a, int b); void q2(int a[ ], int b[ ]); void q3(int *a, int *b); int main(){ //20051XYZT This is your student number, Put real numbers //instead of X,Y,Z,T numbers int a[2] = {X, Y}; int b[2) = {Z, T}; ql(a[0), b[1)); q2(a, b); q3(&b(O], &a[1]); printf("%d, %d, %d, %d \n", a(0], a[1], b[0], bill); return 0;1 //functions void ql(int a, int b){ int temp = a; if(a%2==0){a = b;}else{a=b+2;} b = temp;} void q2(int a( ], int b[ ]){ int temp = a[0]; if(a(01962==0)(aNi = b(0)-Fa[1];lelsefa[0]=b(0]+2;} b(0] = temp;} void q3(int *a, int *b){ int temp = *a; *a = *b; *b = temp;}
Control structures
Control structures are block of statements that analyze the value of variables and determine the flow of execution based on those values. When a program is running, the CPU executes the code line by line. After sometime, the program reaches the point where it has to make a decision on whether it has to go to another part of the code or repeat execution of certain part of the code. These results affect the flow of the program's code and these are called control structures.
Switch Statement
The switch statement is a key feature that is used by the programmers a lot in the world of programming and coding, as well as in information technology in general. The switch statement is a selection control mechanism that allows the variable value to change the order of the individual statements in the software execution via search.
Explain the code according to comment line shown below. The Explanation must contain the flows of the code. Only Line by line code explanations are Not allowed!!. Only General explanations are NOT accepted. Write screen output[5p] and explain how the code works!!. Explain the code with real example. DO NOT TEST THE CODE IN COMPUTER!!
#include <stdio.h> //Prototypes void ql(int a, int b); void q2(int a[ ], int b[ ]); void q3(int *a, int *b); int main(){ //20051XYZT This is your student number, Put real numbers //instead of X,Y,Z,T numbers int a[2] = {X, Y}; int b[2) = {Z, T}; ql(a[0), b[1)); q2(a, b); q3(&b(O], &a[1]); printf("%d, %d, %d, %d \n", a(0], a[1], b[0], bill); return 0;1 //functions void ql(int a, int b){ int temp = a; if(a%2==0){a = b;}else{a=b+2;} b = temp;} void q2(int a( ], int b[ ]){ int temp = a[0]; if(a(01962==0)(aNi = b(0)-Fa[1];lelsefa[0]=b(0]+2;} b(0] = temp;} void q3(int *a, int *b){ int temp = *a; *a = *b; *b = temp;}
Step by step
Solved in 3 steps