What is derived datatype in c?



What is derived datatype in c?..

Answer / Vaibhav Joshi

"Derived" data types in C are Array and Pointers. Arrays are a collection of elements of the same type, while pointers are variables that hold the memory address of another variable.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

What are volatile variables?

1 Answers   Mind Tree,


Can we change the value of static variable in c?

1 Answers  


When a c file is executed there are many files that are automatically opened what are they files?

1 Answers  


What is #ifdef ? What is its application?

1 Answers   TCS,


what is the use of keyword volatile??

4 Answers   LG Soft,


Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol

1 Answers  


Hai,I have done with my bachelor of commerce and planing to ms,please suggest me how to convince vo for shifting from commerce to computers. Visa on 8 DEC 2014  Npu university

1 Answers  


What is the scope of global variable in c?

1 Answers  


How will you print TATA alone from TATA POWER using string copy and concate commands in C?

1 Answers   Amdocs, Apps Associates,


main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?

10 Answers   Ramco,


What is static memory allocation?

1 Answers  


What do you mean by keywords in c?

1 Answers  


Categories