Explain the ternary tree?
Answer / Lalit Kumar Gautam
A ternary tree is a multiway tree where each node has three children. It is used to solve problems that require a larger number of branches than a binary tree can provide, such as certain kinds of search and sorting algorithms.
| Is This Answer Correct ? | 0 Yes | 0 No |
hi any body pls give me company name interview conduct "c" language only
Define function ?Explain about arguments?
2 Answers Geometric Software, Infosys,
# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }
What is #ifdef ? What is its application?
How do you define a function?
Explain how many levels deep can include files be nested?
What is the difference between ++a and a++?
Give the rules for variable declaration?
#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
errors in computer programmes are called
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); }