what is difference between array and structure?

Answers were Sorted based on User's Feedback



what is difference between array and structure? ..

Answer / sushil

structure: structure is a collection of variable, reference
under convinent mean of keeping related information.

Is This Answer Correct ?    7 Yes 17 No

what is difference between array and structure? ..

Answer / rajprasadmaity

chaining and open addressing in hash table ?

Is This Answer Correct ?    53 Yes 75 No

what is difference between array and structure? ..

Answer / ankur

array starts from a

and structure means 36-24-36

most significant diffrence

Is This Answer Correct ?    14 Yes 54 No

what is difference between array and structure? ..

Answer / hfghfgh

Array is Spelled Array

While Structure is spelled Structure.

Is This Answer Correct ?    19 Yes 75 No

Post New Answer

More C Interview Questions

What does %d do in c?

0 Answers  


main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }

2 Answers   CSC,


What is the process to generate random numbers in c programming language?

0 Answers  


Why c is called free form language?

0 Answers  


 Illustrate it   summing the series 2+4+6+......to n terms using  (i) while loop (ii) do-while loop

2 Answers  


How can I call fortran?

0 Answers  


Write one statement equalent to the following two statements x=sqr(a); return(x); Choose from one of the alternatives a.return(sqr(a)); b.printf("sqr(a)"); c.return(a*a*a); d.printf("%d",sqr(a));

6 Answers   TCS,


#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?

4 Answers   Infosys,


what are threads ? why they are called light weight processes ? what is the relation between process and threads ?

1 Answers  


What is atoi and atof in c?

0 Answers  


f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?

7 Answers   Geometric Software,


what is the difference between postfix and prefix unary increment operators?

3 Answers  


Categories