Discussion :: C-MCQs
-
The output of the code below is
int *m();
void main()
{
int *k = m();
printf("hello ");
printf("%d", k[0]);
}
int *m()
{
int a[2] = {5, 8};
return a;
}
Answer : Option C
Explanation :
None.
Be The First To Comment