What is the difference b/w Structure & Array?

Answer Posted / prashant tiwari

array is the set of same type of variable & structure are
use 4 different type of variable

Is This Answer Correct ?    15 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How does normalization of huge pointer works?

644


write a program to generate address labels using structures?

4011


Is the exit() function same as the return statement? Explain.

668


How can you return multiple values from a function?

638


The program will first compute the tax you owe based on your income. User is prompted to enter income. Program will compute the total amount of tax owed based on the following: Income Tax 0 - $45,000 = 0.15 x income $45,001 - $90,000 = 6750 + 0.20 x (income – 45000) $90,001 - $140,000 = 15750 + 0.26 x (income – 90000) $140,001 - $200,000 = 28750 + 0.29 x (income – 140000) Greater than $200,000 = 46150 + 0.33 x (income – 200000) Dollar amounts should be in dollars and cents (float point numbers with two decimals shown). Tax is displayed on the screen.

1070






Do pointers store the address of value or the actual value of a variable?

613


if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0

1456


Is there any data type in c with variable size?

636


how do you programme Carrier Sense Multiple Access

1522


Write a program to print fibonacci series using recursion?

591


Explain the term printf() and scanf() used in c language?

600


What does struct node * mean?

605


1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.

1668


Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.

667


What are local static variables?

622