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 5 data types?

592


C language questions for civil engineering

1233


What is a const pointer?

624


Why do we write return 0 in c?

542


Explain the difference between the local variable and global variable in c?

591






How can a string be converted to a number?

506


What is n in c?

567


How can you invoke another program from within a C program?

609


What are nested functions in c?

558


If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?

770


What is a macro?

650


Is there a way to jump out of a function or functions?

628


What is unsigned int in c?

549


in iso what are the common technological language?

1624


Why are algorithms important in c program?

612