what is difference between array and structure?
Answer Posted / dhivya
when we are declaring an array a variable is enough with
the size.
when we are declaring structure it contain different data
types.
| Is This Answer Correct ? | 16 Yes | 18 No |
Post New Answer View All Answers
What is strcmp in c?
What is the most efficient way to count the number of bits which are set in an integer?
What is data structure in c programming?
What are the disadvantages of external storage class?
Explain indirection?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
What are inbuilt functions in c?
write a progrmm in c language take user interface generate table using for loop?
What are operators in c?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
Why is this loop always executing once?
What is typedf?
What is the advantage of a random access file?
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?