โช Choose the correct option.
What is the output of the following C Program?
#include
void main()
{
int *j;
{
int i=10;
j=&i;
}
printf("%d",*j);
}
#include
void main()
{
int *j;
{
int i=10;
j=&i;
}
printf("%d",*j);
}