What are local static variables? How can you use them?
No Answer is Posted For this Question
Be the First to Post Answer
What does static variable mean in c?
Can you write the algorithm for Queue?
0 Answers College School Exams Tests, TCS,
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }
Why is it usually a bad idea to use gets()? Suggest a workaround.
different between overloading and overriding
what is difference between overriding and overloading?
Is it possible to execute code even after the program exits the main() function?
What extern c means?
write a method for an array in which it can display the largest n next largest value.
Explain pointers in c programming?
How would you rename a function in C?
What is keyword with example?