Where are the auto variables stored?
No Answer is Posted For this Question
Be the First to Post Answer
Difference between constant pointer and pointer to a constant.
When would you use a pointer to a function?
how to print this sereis 2 4 3 6 5..........?
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
What is header file in c?
Finding first/last occurrence of a character in a string without using strchr( ) /strrchr( ) function.
What is use of null pointer in c?
how to go with this?
i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }
Write a program to accept a character & display its corrosponding ASCII value & vice versa?
plz answer..... a program that reads non-negative integer and computes and prints its factorial
Linked lists -- can you tell me how to check whether a linked list is circular?