What are the advantages of using linked list for tree construction?
No Answer is Posted For this Question
Be the First to Post Answer
how to find out the reverse number of a digit if it is input through the keyboard?
What do you mean by team??
What is define directive?
What is zero based addressing?
What do you mean by Recursion Function?
What are local variables c?
What is binary tree in c?
what is the size of an integer variable?
main() { intx=2,y=6,z=6; x=y=z; printf(%d",x) }
5 Answers Amazon, HCL, Thought Works,
How can I set an array's size at run time?
what is the advantage of function pointer
16 Answers CMC, CS, Freshdesk, L&T, LG Soft, Matrix, TCS,
2.Given the short c program that follows a. make a list of the memory variables in this program b.which lines of code contain operations that change the contents of memory? what are those operations? Void main( void) { Double base; Double height; Double area; Printf(“enter base and height of triangle :”); Scanf(“%lg”, &base); Scanf(“%lg”, &height); Area=base*height/2.0; Printf(“the area of the triangle is %g \n”,area); }