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 most efficient way to count the number of bits which are set in an integer?
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
What standard functions are available to manipulate strings?
What is a method in c?
Tell me what are bitwise shift operators?
What is static identifier?
How are Structure passing and returning implemented by the complier?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
i have to apply for rbi before that i need to know the the syllabus for the entrance questions. whethet it may be aps or techinical
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
What is bubble sort technique in c?
Why c is faster than c++?
Explain the difference between ++u and u++?