Answer Posted / dippi
data structure is a structure in which elements having
different datatypes can be kept
| Is This Answer Correct ? | 5 Yes | 4 No |
Post New Answer View All Answers
What tq means in chat?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
Which one would you prefer - a macro or a function?
disply the following menu 1.Disply 2.Copy 3.Append; as per the menu do the file operations 4.Exit
What are static variables in c?
What is storage class?
What does the c preprocessor do?
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
what is the difference between north western polytechnique university and your applied colleges?? please give ur answers for this. :)
What is 2c dna?
When should we use pointers in a c program?
How is a macro different from a function?
How does selection sort work in c?
What is the use of function in c?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }