what is importance of data sturture in a programming
language?
Answers were Sorted based on User's Feedback
Answer / kranthikumar
Logical representation and organization of data in the main
memory in other words it is a logical memory representation
of a storage
| Is This Answer Correct ? | 7 Yes | 11 No |
Design a program to input a date from user in the form day/month/year (e.g. 2/6/2000) and report whether it’s a valid date or not. The program should take account of leap years. You will need to know that a leap year is a year that is exactly divisible by 4, except that century years are only leap years if they are divisible by 400.
What is the difference between *p++ and (*p)++ ?
Define macro.
Explain what is oop?
Write a struct time where integer m, h, s are its members?
Can we inherit constructor in c++?
What is the output of printf("%d")?
58 Answers CTS, HCL, Infosys, TCS, Winit, Wipro,
What is stream and its types in c++?
if there is binary tree which one is the easiest way to delete all child node?
what is VOID?
What is the difference between inline functions and macros?
Write a corrected statement in c++ so that the statement will work properly. if (x = y) x = 2*z;