Find the output of the following program?
#include <stdio.h>int main(){int i;i = 1, 2, 3;printf("%d", i);return 0;
What is the output of the above code snippet?#include<stdio.h>struct employ{int ecode;struct employ e;};
#include<stdio.h>int main(){char ch;int i;scanf("%c", &i);scanf("%d", &ch);printf("%c %d", ch, i);return 0;}