Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

how to print a statement in c without use of console statement ,with the help of if statement it should print

2 Answers   Satyam,


What is sizeof c?

0 Answers  


void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply

0 Answers  


int i=10; printf("%d %d %d", i, i=20, i);

0 Answers  


Give the rules for variable declaration?

0 Answers  






void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }

1 Answers  


#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } Find the output

5 Answers   CitiGroup,


Consider a language that does not have arrays but does have stacks as a data type.and PUSH POP..are all defined .Show how a one dimensional array can be implemented by using two stacks.

3 Answers   Google,


Write a program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors

3 Answers  


What is hash table in c?

0 Answers  


What is the Purpose of 'extern' keyword in a function declaration?

0 Answers  


Why do we use return in c?

0 Answers  


Categories