The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder
traversal is??? please help me on this
What is clrscr in c?
can u write a program in C, which does not use = (eqaul)or any arithmatic assignment(like -=,+=,*= etc) operator to swap to number?
Explain indirection?
What is the difference between functions abs() and fabs()?
Identify the correct argument for the function call fflush () in ANSI C: A)stdout B)stdin C)stderr D)All the above
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What is pointer to pointer in c?
What are the standard predefined macros?
Explain about C function prototype?
biggest of two no's with out using if condition statement
How we can write a value to an address using macro..?
How to find the digits truncation when assigning the interger variable to the character variables. like int i=500; char x = i : here we have truncation. how to find this. another ex: i =100; char x=i. here we do not have truncation.