what is difference between array and structure?
Answer Posted / ajeet
Array is the collection of homogeneous data elements
whereas Structure is the collection of heterogeneous
data types elements.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
What is the explanation for prototype function in c?
How can I read data from data files with particular formats?
Explain the difference between structs and unions in c?
What is the difference between local variable and global variable in c?
When can a far pointer be used?
I have a varargs function which accepts a float parameter?
What is static identifier?
What does 2n 4c mean?
What is character set?
How to set file pointer to beginning c?
Explain the difference between malloc() and calloc() in c?
program for reversing a selected line word by word when multiple lines are given without using strrev
What is wild pointer in c with example?
Why is it important to memset a variable, immediately after allocating memory to it ?