what is data structure.in linear and non linear data
structures which one is better?Explain
Answer Posted / ashi
A data structure is arrangement of data in a computer's
memory even disk storage linear data is better than non liner
| Is This Answer Correct ? | 15 Yes | 3 No |
Post New Answer View All Answers
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
What do you know about the use of bit field?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
Explain what is wrong with this program statement? Void = 10;
List the difference between a 'copy constructor' and a 'assignment operator' in C?
c program to compute AREA under integral
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
When should we use pointers in a c program?
Is c still relevant?
Why c is called free form language?
How can I generate floating-point random numbers?
Do pointers store the address of value or the actual value of a variable?
can any one tel me wt is the question pattern for NIC exam
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
c programs are converted into machine language with the help of a) an interpreter b) a compiler c) an operatinf system d) none of the above