Answer Posted / anandshan01
A data structure is particular way of storing and
organising data in a computer so that it can be
efficiently...
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
What are 3 types of structures?
What are the advantages of using new operator as compared to the function malloc ()?
Define the scope of static variables.
What are the difference between a free-standing and a hosted environment?
What are the c keywords?
What is 2c dna?
How many levels deep can include files be nested?
What is the difference between declaring a variable and defining a variable?
What is difference between far and near pointers?
What is getch?
What is structure padding and packing in c?
How can I recover the file name given an open stream or file descriptor?
How can I convert a number to a string?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What are the 4 data types?