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


Please Help Members By Posting Answers For Below Questions

What are the Advantages of using macro

907


What do you mean by c?

790


What is the purpose of macro in C language?

857


Is fortran still used in 2018?

802


Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?

874


What is the use of linkage in c language?

828


What is the code in while loop that returns the output of given code?

1652


What is the translation phases used in c language?

837


What is variable in c example?

815


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

993


What is string concatenation in c?

782


What is a stream in c programming?

826


What is an lvalue?

848


How would you use the functions fseek(), freed(), fwrite() and ftell()?

924


What is getche() function?

817