CHO BIẾT KẾT QUẢ CỦA CHƯƠNG TRÌNH SAU

Câu 21: Cho biết kết quả của chương trình

sau:

void main()

#include <stdio.h>

{

int i = 10, s = 0;

int x, y;

while (s<20)

void test (int &a, int &b)

{

s = s + i;

a--; b++;

i = i - 1;

}

void main()

}

printf("%d", s);

int x = 1, y =5;

test(x, y);

a. 34

b. 27

printf("%d%d", x, y);

c. 19

d. 10

a. 15