what is difference between array and structure?
Answers were Sorted based on User's Feedback
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 |
Answer / rajprasadmaity
chaining and open addressing in hash table ?
Is This Answer Correct ? | 53 Yes | 75 No |
Answer / ankur
array starts from a
and structure means 36-24-36
most significant diffrence
Is This Answer Correct ? | 14 Yes | 54 No |
Answer / hfghfgh
Array is Spelled Array
While Structure is spelled Structure.
Is This Answer Correct ? | 19 Yes | 75 No |
What does %d do in c?
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }
What is the process to generate random numbers in c programming language?
Why c is called free form language?
Illustrate it summing the series 2+4+6+......to n terms using (i) while loop (ii) do-while loop
How can I call fortran?
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));
#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?
what are threads ? why they are called light weight processes ? what is the relation between process and threads ?
What is atoi and atof in c?
f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?
what is the difference between postfix and prefix unary increment operators?