what is the different between data structure and data type?



what is the different between data structure and data type?..

Answer / shalini

data structure is the way of organising and storing the
data, where as data type is the one that defines the
required data for the program requirement.
ex: integer, char,float

Is This Answer Correct ?    11 Yes 1 No

Post New Answer

More C Interview Questions

Unsigned char c; for ( c=0;c!=256;c++2) printf("%d",c); No. of times the loop is executed ?

8 Answers   Mascot, TCS,


Is there a way to jump out of a function or functions?

0 Answers  


main() { int a=5; printf(?%d,%d,%d\n?,a,a< <2,a>>2); } Answer: 5,20,1 please explain this code in detail

6 Answers   TCS,


write a program to print infinte number

4 Answers  


What is the difference between i++ and i+1 ?(in terms of memory)

3 Answers   HCL,






1) int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain the explain the output

2 Answers  


What is putchar() function?

0 Answers  


Write a program of prime number using recursion.

0 Answers   Aspiring Minds,


Difference between for loop and while loop?

1 Answers  


The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this

1 Answers  


What does the error message "DGROUP exceeds 64K" mean?

0 Answers   Celstream,


Write a program to find the biggest number of three numbers in c?

0 Answers  


Categories