?
In the following C code, we can access the 1st character of the string sval by using . . . . . .
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];
. .
#include <stdio.h>
struct
{
char *name;
union
{
char *sval;
} u;
} symtab[10];
Join the Discussion
Login to post a comment or share your explanation.
Login