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
How can I remove the trailing spaces from a string?
What is null pointer constant?
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
How many loops are there in c?
What are the different types of control structures in programming?
what are bit fields in c?
Explain the difference between ++u and u++?
What's the total generic pointer type?
What is property type c?
What is structure data type in c?
What is the scope of global variable in c?
Which header file is used for clrscr?
Why & is used in c?
What is typedef struct in c?
What is pointers in c with example?