what is difference between array and structure?
Answer Posted / priya
Array have same data type and static memory allocation....
Structure have different data type and dynamic memory
allocation
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Are enumerations really portable?
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
What is meant by type casting?
What is main () in c?
Explain the use of 'auto' keyword in c programming?
What is #include stdlib h?
Why should I use standard library functions instead of writing my own?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
Why static variable is used in c?
How many levels of indirection in pointers can you have in a single declaration?
What is the explanation for cyclic nature of data types in c?
Explain how do you print an address?
What is linear search?
What is getch () for?