#include stdio.hWhat will be the output of the following codeint* fun(){int num = 10:return #}int main(){int *ptr = NULL;ptr = fun();printf("%d", *ptr);return 0}
#include stdio.h#define a( i, j ) printf("%d", j##i )int main(){a(5, 10);}