hi,
i m a beginner in C & i hav a doubt regarding structures.
the code i tried is:
/* code beginning */
struct s{
int i;
char c;
}m = {1,'A');//if any syntax errors... sry
main() {
struct s *p;
printf ("%d, %c, %d\n", *p, p->i);
}
/* code end */
o/p: 1 A 1
/***********************/
my doubt...