What is static memory allocation?
No Answer is Posted For this Question
Be the First to Post Answer
What are different types of operators?
What is the output for the below program? void main() { float me=1.1; double you=1.1; if(me==you) printf("love c"); else printf("know c"); }
What is the difference between int main and void main?
what is the little endian and big endian?
Why does notstrcat(string, "!");Work?
To what value do nonglobal variables default? 1) auto 2) register 3) static
how to find sum of digits in C?
which operator having lowest precedence?? a.)+ b.)++ c.)= d.)%
Explain the array representation of a binary tree in C.
Write a program to remove the C comments(/* */) and C++ comments(//) from a file. The file should be declared in command line.
What is variable in c with example?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory