Describe the modifier in c?
No Answer is Posted For this Question
Be the First to Post Answer
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?
Differentiate between static and dynamic modeling.
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }
who is first prime minister in india??
Describe explain how arrays can be passed to a user defined function
WAP to accept first name,middle name & last name of a student display its initials?
What is a macro in c preprocessor?
Define recursion in c.
Total of how many functions are available in c?
What is the purpose of the code, and is there any problem with it? unsigned int f( unsigned n ) { return –n & 7; }
wat are the two methods for swapping two numbers without using temp variable??