What's the best way to declare and define global variables?
Answer Posted / ajeet singh
through the "public" key world, we define the globle variable.
| Is This Answer Correct ? | 1 Yes | 5 No |
Post New Answer View All Answers
What is an auto variable in c?
What does sizeof return c?
If null and 0 are equivalent as null pointer constants, which should I use?
Do you know the use of fflush() function?
What's the right way to use errno?
What are identifiers in c?
explain what are pointers?
Explain what are the different file extensions involved when programming in c?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
What are global variables and how do you declare them?
Why calloc is better than malloc?
I have seen function declarations that look like this
Write a program to print fibonacci series using recursion?
Explain how can I write functions that take a variable number of arguments?
What is structure of c program?