Write a code to generate a series where the next element is the sum of last k terms.
What is a pointer and how it is initialized?
what is call by value and call by reference
What is the best way to comment out a section of code that contains comments?
main() { int x=2, y=4 if ((x==2||y==4) x++ y++ if (y==4+1) { x=x+y; } y++; printf("The values of x and y are %d and %d."x,y); } What is the output?
What is 'bus error'?
What is c language and why we use it?
Explain how can you check to see whether a symbol is defined?
Can you tell me how to check whether a linked list is circular?
Binary tree traversing
What are the different types of pointers?
Tell me when is a void pointer used?
Is c++ based on c?