what is data structure?
Answers were Sorted based on User's Feedback
Answer / anandshan01
A data structure is particular way of storing and
organising data in a computer so that it can be
efficiently...
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / raju
ds is a collection of data elements and arranhed aspcific
manner
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / p.saravanana
Data structure is a (computer science) the organization of
data (and its storage allocations in a computer)
| Is This Answer Correct ? | 2 Yes | 1 No |
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }
What is the explanation for the dangling pointer in c?
What is ## preprocessor operator in c?
a.One Cannot Take the address of a Bit Field b.bit fields cannot be arrayed c.Bit-Fields are machine Dependant d.Bit-fields cannot be declared as static Which of the Following Statements are true w.r.t Bit-Fields A)a,b&c B)Only a & b C)Only c D)All
3 Answers Accenture, Digg.com,
int arr[] = {1,2,3,4} int *ptr=arr; *(arr+3) = *++ptr + *ptr++; Final contents of arr[]
What is the package for freshers(Non IIT) in amazon(hyderabad). And what is the same for those who are a contract employee.
explain what are actual arguments?
Is c an object oriented programming language?
What's the best way to declare and define global variables?
Write a program of advanced Fibonacci series.
What does 1f stand for?
wats the diference btwen constant pointer and pointer to a constant.pls give examples.