C Puzzle Get link Facebook X Pinterest Email Other Apps - March 12, 2019 What is the output of the following code snippet? #include <stdio.h> void main(){ printf("%d",(12%2)); } Output: 0 Explanation: % is the mod operator in c, which is used to find remainder of an integer division. Read more