Answer Posted / suruthi.s
A data type which is created using abstract data process is
known as abstract data type.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What happens if a header file is included twice?
Are the variables argc and argv are local to main?
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
How do you view the path?
What does stand for?
What is a pointer on a pointer in c programming language?
What is wrong with this code?
Why we use void main in c?
What is sizeof array?
What is the difference between array and linked list in c?
What are the advantages of using linked list for tree construction?
What is restrict keyword in c?
What is a volatile keyword in c?
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); }
Is it cc or c in a letter?