where do we use structure pointer?
Answer / naveen shukla
we uses structure pointer when we have to point to the whole
object and we can access all the values of the data in the
object.
when we want to keep the reference of the structure variable
| Is This Answer Correct ? | 2 Yes | 0 No |
What is "Duff's Device"?
write a c program to add two integer numbers without using arithmetic operator +
What is advantage of pointer in c?
What are two dimensional arrays alternatively called as?
diff between exptected result and requirement?
How to avoid structure padding in C?
What is optimization in c?
what is the basis for selection of arrays or pointers as data structure in a program
#include<string.h> void main() { String s1[]={"swathi"}; string s2[]={"maddimsetti"}; s1[]=s[]; printf("%s",s1[]); }
How would you rename a function in C?
write a program to print data of 5 five students with structures?
struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]