ExamVeda
Login
Home
This question belongs to C Program Structure And Union
Structure and Union
?

In the following C code, we can access the 1st character of the string sval by using . . . . . .
#include <stdio.h>
struct
{
    char *name;
    union
    {
        char *sval;
    } u;
} symtab[10];
. .

Answer & Solution
Correct Answer: Option D
Let's discuss the solution. Join the discussion
Examveda
Question posted by Examveda
Community

Join the Discussion

No comments yet Be the first to discuss this question.