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
What is difference between scanf and gets?
A array contains dissimilar element how can we count, and A array contains dissimilar element how can we store in another array with out repetition.
an algorithem for the implementation of circular doubly linked list
What are pointers in C? Give an example where to illustrate their significance.
plz answer..... a program that reads non-negative integer and computes and prints its factorial
I didn't count the ducks that I saw in line, but I do remember that one duck was in front of two ducks, another duck behind two ducks. How many ducks did I see?
plz answer.. a program that takes a string e.g. "345" and returns integer 345
What is a pointer variable in c language?
Convert the following expression to postfix and prefix (A+B) * (D-C)
What is a dynamic array in c?
Why we use break in c?
Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV