what is difference between array and structure?
Answers were Sorted based on User's Feedback
Answer / sushil
structure: structure is a collection of variable, reference
under convinent mean of keeping related information.
| Is This Answer Correct ? | 7 Yes | 17 No |
Answer / rajprasadmaity
chaining and open addressing in hash table ?
| Is This Answer Correct ? | 53 Yes | 75 No |
Answer / ankur
array starts from a
and structure means 36-24-36
most significant diffrence
| Is This Answer Correct ? | 14 Yes | 54 No |
Answer / hfghfgh
Array is Spelled Array
While Structure is spelled Structure.
| Is This Answer Correct ? | 19 Yes | 75 No |
What is a pointer on a pointer in c programming language?
i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }
Meaning of () in c
write a program to fined second smallest and largest element in a given series of elements (without sorting)
What do you mean by c what are the main characteristics of c language?
Explain what is wrong with this program statement? Void = 10;
find largest of 3 no
12344321 123 321 12 21 1 1 how i print this program??
5 Answers DSR Management, Winit,
What are near, far and huge pointers?
0 Answers Hexaware, Thomson Reuters, Virtusa,
What are enumerated types?
What is build process in c?
How do you define CONSTANT in C?