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 are the Advantages of using macro
What do you mean by c?
What is the purpose of macro in C language?
Is fortran still used in 2018?
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
What is the use of linkage in c language?
What is the code in while loop that returns the output of given code?
What is the translation phases used in c language?
What is variable in c example?
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
What is string concatenation in c?
What is a stream in c programming?
What is an lvalue?
How would you use the functions fseek(), freed(), fwrite() and ftell()?
What is getche() function?