Answer Posted / ali
A data structure in computer science is a to store data in a
computer that can be used efficiently.It is an organitzation
of mathematical and logical concepts of data.
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
What are identifiers and keywords in c?
What is calloc in c?
What is the function of multilevel pointer in c?
What is memory leak in c?
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
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); }
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
Why doesnt that code work?
what is the different bitween abap and abap-hr?
What are the preprocessor categories?
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
Explain how can I convert a string to a number?
What was noalias and what ever happened to it?
What does the characters “r” and “w” mean when writing programs that will make use of files?