How to throw some light on the b tree?
No Answer is Posted For this Question
Be the First to Post Answer
can anyone suggest some site name..where i can get some good data structure puzzles???
Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
What is the auto keyword good for?
What is encapsulation?
how to swap 2 numbers within a single statement?
main() { int i = 1; int num[] = {1,2,3,4}; num[i] = i++; printf("%d", num[i]); } what will be the output? }
22 Answers NDS, TCS,
What are the key features in c programming language?
what is default constructor?
how to count no of words,characters,lines in a paragraph.
what is output of the following statetment?Printf(“%x”, -1<<4); ?
with out using main how to execute the program?