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
Explain the difference between ++u and u++?
What are the different types of control structures in programming?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
Explain how can I right-justify a string?
What is a pointer value and address in c?
Is null always equal to 0(zero)?
Explain what is wrong with this program statement? Void = 10;
Where local variables are stored in c?
What is string constants?
Is it cc or c in a letter?
What is putchar() function?
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
What is the use of function overloading in C?
What is the size of array float a(10)?