1. What is the output of the following code?
#include <stdio.h> int main(int argc, char *argv[]){ int a=3; a++; printf("%d",a/2); return 0; }