struct node
{
int *a;
char *b;
char array[12];
};
struct node m,*n;
assign the value in *a,*b,char array[12]
Answer Posted / ricky dobriyal
/* hello i am ricky dobriyal */
struct node
{
int *a;
char *b;
char array[12];
};
struct node m,*n;
n->a=10;
n->b='5';
m.array="ricky dobriyal";
Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
Describe the difference between = and == symbols in c programming?
write a program to print largest number of each row of a 2D array
What does c mean in basketball?
What is the size of structure in c?
What are the types of bitwise operator?
What is n in c?
What are keywords in c with examples?
What does s c mean in text?
explain what is an endless loop?
What is an auto variable in c?
What are the scope of static variables?
What is a void pointer? When is a void pointer used?
What are file streams?
What is your stream meaning?
What are the 4 data types?