Answer Posted / vijaya
By default functions are extern, so it is visible from the outer files. If it is as static then it is in invisible from the outer files.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
why do some people write if(0 == x) instead of if(x == 0)?
Why we use int main and void main?
How can I change their mode to binary?
Explain heap and queue.
Is there any possibility to create customized header file with c programming language?
Is boolean a datatype in c?
Explain what is the difference between the expression '++a' and 'a++'?
What are the string functions? List some string functions available in c.
disply the following menu 1.Disply 2.Copy 3.Append; as per the menu do the file operations 4.Exit
Explain what is dynamic data structure?
What is the difference between test design and test case design?
Explain c preprocessor?
Explain about C function prototype?
What does typeof return in c?