Can you write the algorithm for Queue?
No Answer is Posted For this Question
Be the First to Post Answer
What does dm mean sexually?
what type of questions arrive in interview over c programming?
without using arithmatic operator convert an intger variable x into x+1
What is table lookup in c?
What is a memory leak in structures? How can we rectify that?
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }
What is the size of empty structure in c?
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); }
What is meant by type specifiers?
What is the use of define in c?
why we need function pointers?
Identify the operators that is not used with pointer a. && b. # c. * d. >>