To what value do nonglobal variables default?
1) auto
2) register
3) static
Answers were Sorted based on User's Feedback
Answer / anilkumar927@gmail.com
static
explation:
all non global variables are act as static
all local variables are act as auto
| Is This Answer Correct ? | 0 Yes | 1 No |
What is pass by reference in functions?
Explain how do you list files in a directory?
What is the use of a semicolon (;) at the end of every program statement?
A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }
What is a pointer on a pointer in c programming language?
What are signals in C?
What are the 5 types of inheritance in c ++?
What are the restrictions of a modulus operator?
Why c is a procedural language?
how can I convert a string to a number?
write a c program to add two integer numbers without using arithmetic operator +
Explain the advantages and disadvantages of macros.