Are pointers integer?
No Answer is Posted For this Question
Be the First to Post Answer
Explain b+ tree?
What are the 4 types of organizational structures?
a c code by using memory allocation for add ,multiply of sprase matrixes
class foo { public: static int func(const char*& p) const; }; This is illegal, why?
what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
Why can't I perform arithmetic on a void* pointer?
What is pragma c?
Diff: between this 2 classes in terms of memory class A { int i; char c; double d; }; class A { double d; int i; char c; }; How it is calculating?
How to find the given no is odd or even without checking of any condition and loops. (Hint: Using array)
What is indirection in c?
Describe the difference between = and == symbols in c programming?