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
Which is better malloc or calloc?
What is #include stdio h and #include conio h?
find out largest elemant of diagonalmatrix
What was noalias and what ever happened to it?
What is the difference between āgā and āgā in C?
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
How do I swap bytes?
Why is c used in embedded systems?
How can you return multiple values from a function?
How many levels of pointers can you have?
What is bin sh c?
regarding pointers concept
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
What are the advantage of c language?