The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder
traversal is??? please help me on this
value = 0xabcd; for (loop = 1; (value >> 1) & 1 | loop & 1; loop++) { foo(); if (loop & 1) value >>= 1; } how many times is foo() executed?
Example of friendly function in c++
a simple program in c language
What is equivalent to ++i+++j?
is it possible to change the default calling convention in c ?
What is the difference between variable declaration and variable definition in c?
Explain how do I determine whether a character is numeric, alphabetic, and so on?
tell me the full form of c?
What will the preprocessor do for a program?
What's the difference between DELETE TABLE and TRUNCATE TABLE commands?
main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%s\n",ptr); ptr++; printf("%s\n",ptr); } Find the Outputs?
Is javascript written in c?