1.what are local and global variables?
2.what is the scope of static variables?
3.what is the difference between static and global variables?
4.what are volatile variables?
5.what is the use of 'auto' keyword?
6.how do we make a global variable accessible across files?
Explain the extern keyword?
7.what is a function prototype?
8.what does keyword 'extern' mean in a function declaration?
No Answer is Posted For this Question
Be the First to Post Answer
can v write main() { main(); } Is it true?
How does placing some code lines between the comment symbol help in debugging the code?
Binary tree traversing
why the execution starts from main function
What is conio h in c?
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
what is use of loop?
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
pointer_variable=(typecasting datatype*)malloc(sizeof(datatype)); This is the syntax for malloc?Please explain this,how it work with an example?
2 Answers eClerx, Excel, kenexa,
how can f be used for both float and double arguments in printf? Are not they different types?
Is it acceptable to declare/define a variable in a c header?
What is assert and when would I use it?