Answer Posted / basri zuber a
array is collection of similer datatype.structure is
collection of diffrent diffrent data type.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is .obj file in c?
What are the types of data types and explain?
Why clrscr is used after variable declaration?
How can this be legal c?
What is the difference between far and near in c?
Explain what is #line used for?
What are the basic data types associated with c?
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
write a program to generate address labels using structures?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
What is extern keyword in c?
Explain the difference between #include "..." And #include <...> In c?
what do the 'c' and 'v' in argc and argv stand for?
What are the advantages of union?
what is the c source code for the below output? 10 10 10 10 10 10 10 10 10 10 9 9 7 6 6 6 6 6 6 9 7 5 9 7 3 2 2 5 9 7 3 1 5 9 7 3 5 9 7 4 4 4 4 5 9 7 8 8 8 8 8 8 8 8 9