Answer Posted / yug
array is a sequential collection of elements of same data
types and those are stored in contiguous memory locations.
| Is This Answer Correct ? | 80 Yes | 15 No |
Post New Answer View All Answers
What is an expression?
Is c still used?
What is || operator and how does it function in a program?
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); }
How can I convert a number to a string?
What is the value of h?
formula to convert 2500mmh2o into m3/hr
What are pointers? What are stacks and queues?
What is difference between main and void main?
What is the use of volatile?
Can math operations be performed on a void pointer?
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
What are the advantages of using linked list for tree construction?
What does %c do in c?
p*=(++q)++*--p when p=q=1 while(q<=6)