Explain threaded binary trees?
No Answer is Posted For this Question
Be the First to Post Answer
What is the easiest sorting method to use?
What is the difference b/w Structure & Array?
Write a C/C++ program that connects to a MySQL server and checks intrusion attempts every 5 minutes. If an intrusion attempt is detected beep the internal speaker to alert the administrator. A high number of aborted connects to MySQL at a point in time may be used as a basis of an intrusion.
True or false: If you continuously increment a variable, it will become negative? 1) True 2) False 3) It depends on the variable type
WAP to convert text into its ASCII Code and also write a function to decode the text given?
What is modifier & how many types of modifiers available in c?
What is NULL pointer?
what is c language?
What are the 4 types of organizational structures?
Explain the difference between #include "..." And #include <...> In c?
What is a node in c?
#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20