What will be the output of the following C code?
#include
typedef int integer;
int main()
{
int i = 10, *ptr;
float f = 20;
integer j = i;
ptr = &j;
printf("%d\n", *ptr);
return 0;
}
Answer: D
No answer description available for this question.