1 What is a Data Structure?
Answer / nashiinformaticssolutions
A data structure is a type of storage format that specifies how information is arranged, saved, and worked with.
Trees, graphs, and arrays are a few well-known data structures.
| Is This Answer Correct ? | 0 Yes | 0 No |
two variables are added answer is stored on not for third variable how it is possible?
inline function is there in c language?
What are different types of variables in c?
void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }
What is volatile variable in c?
What is .obj file in c?
#define MAX 3 main() { printf("MAX = %d \n",MAX ); #undef MAX #ifdef MAX printf("Vector Instituteā); #endif
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
What is a structure member in c?
What is a null string in c?
WAP to convert text into its ASCII Code and also write a function to decode the text given?
How can I ensure that integer arithmetic doesnt overflow?