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
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
Does c have class?
Explain what does the format %10.2 mean when included in a printf statement?
What does static variable mean in c?
Where are some collections of useful code fragments and examples?
Why & is used in scanf in c?
What is New modifiers?
What are unions in c?
a c code by using memory allocation for add ,multiply of sprase matrixes
In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.
how to print the character with maximum occurence and print that number of occurence too in a string given ?
What do you know about the use of bit field?
What is a structural principle?
Differentiate between null and void pointers.
What is the newline escape sequence?