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
What is the purpose of main( ) in c language?
What is the use of putchar function?
What happens if you free a pointer twice?
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
Is c easier than java?
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
if the area was hit by a virus and so the decrease in the population because of death was x/3 and the migration from other places increased a population by 2x then annually it had so many ppl. find our the population in the starting.
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
What is exit() function?
What is the use of a ‘’ character?
Describe the order of precedence with regards to operators in C.
What is the use of a conditional inclusion statement in C?
what is reason of your company position's in india no. 1.
What is merge sort in c?