How to Throw some light on the splay trees?
No Answer is Posted For this Question
Be the First to Post Answer
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
Can we use visual studio for c?
second highest number in a given set of numbers
Write a program to enter the name and age. If age>28 then find salary categories. if age<28 then find that you are gaduate or not.
Explain about C function prototype?
What does static variable mean in c?
. Write a program to get a string and to convert the 1st letter of it to uppercase
Explain function?
f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?
Why & is used in c?
What is the difference between a function and a method in c?
why Language C is plateform dependent