Where are local variables stored in c?
No Answer is Posted For this Question
Be the First to Post Answer
What are variables c?
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
How is a macro different from a function?
Is it better to use a macro or a function?
What is the maximum no. of arguments that can be given in a command line in C.?
1)what are limitations for recursive function? 2)write a program to read a text file and count the number of characters in the text file
what is link list?
What is auto keyword in c?
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
Explain About fork()?
What is dynamic dispatch in c++?