Multiple choice What would be the result of the following statement in C? printf(n %d,4%3) 1 4 3 None of these Reveal answer Fill a bubble to check yourself A Correct answer Explanation % symbol refers to modulus operator in C, which returns remainder when two integers are divided.hence, it is the correct answer.