#include <stdio.h>void main(){1 < 2 ? return 1: return 2;}
What will be the output of the following C function?#include <stdio.h>void reverse(int i);int main(){reverse(1);}void reverse(int i){if (i > 5)return ;printf("%d ", i);return reverse((i++, i));}