For initialization a = 2, c = 1 the value of a and c after this code will be
c = (c) ? a = 0 : 2;
options:
1.a = 0, c = 0;
2.a = 2, c = 2;
3.a = 2, c = 2;
4.a = 1, c = 2;
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
ANSWER : a = 0, c = 0;