struct node
{
int *a;
char *b;
char array[12];
};
struct node m,*n;
assign the value in *a,*b,char array[12]
Answer Posted / aravind
struct node
{
int *a;
char *b;
char array[12];
};
struct node m,*n;
m->a*=5;
m->*b='c';
m.array[12]={"aravind");
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
What is difference between union and structure in c?
What is the difference between exit() and _exit() function?
What is c variable?
What is a lvalue
Explain what is meant by high-order and low-order bytes?
What are pointers in C? Give an example where to illustrate their significance.
What is property type c?
Is main is a keyword in c?
What is a ternary operator in c?
i want to know the procedure of qualcomm for getting a job through offcampus
What is an lvalue?
Tell us the use of fflush() function in c language?
Can variables be declared anywhere in c?
Can we declare a function inside a function in c?
What is gets() function?