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


Please Help Members By Posting Answers For Below Questions

Describe the difference between = and == symbols in c programming?

1017


write a program to print largest number of each row of a 2D array

2097


What does c mean in basketball?

767


What is the size of structure in c?

907


What are the types of bitwise operator?

853


What is n in c?

800


What are keywords in c with examples?

833


What does s c mean in text?

833


explain what is an endless loop?

829


What is an auto variable in c?

970


What are the scope of static variables?

835


What is a void pointer? When is a void pointer used?

834


What are file streams?

778


What is your stream meaning?

856


What are the 4 data types?

781