Explain threaded binary trees?
No Answer is Posted For this Question
Be the First to Post Answer
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
What are the types of pointers in c?
how we can say java is platform independent, while we require JVM for that particular Operating System?
Can true be a variable name in c?
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
What is pre-emptive data structure and explain it with example?
What is 1d array in c?
What is a macro in c preprocessor?
void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }
where can function pointers be used?
A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }
write a C program to print the program itself ?!