What would be the value of i and k in below C program?
		
					

Loading

โœช Choose the correct option.

What would be the value of i and k in below C program?


void main() {
int i,j,k;
j = 5;
i = 2 *j/2;
k = 2 *(j/2);
}

A. i = 5, k = 5
B. i=4,k=4
C. i = 5, k = 4
D. i = 4, k = 5

Leave a Comment