/*question number 1*/
What number will z in the sample code above contain?
Choice 1
5
Choice 2
6
Choice 3
10 [Ans] Corrected by buddy by running the program
Choice 4
11
Choice 5
12
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
/*question number 2*/
With every use of a memory allocation function, what function should be used to release allocated memory which is no longer...
100 Multiple choice questions in C
Code:
int z,x=5,y=-10,a=4,b=2; z = x++ - --y * b / a;
Choice 1
5
Choice 2
6
Choice 3
10 [Ans] Corrected by buddy by running the program
Choice 4
11
Choice 5
12
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
/*question number 2*/
With every use of a memory allocation function, what function should be used to release allocated memory which is no longer...
100 Multiple choice questions in C