To what value do nonglobal variables default?
1) auto
2) register
3) static
Answer Posted / 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 |
Post New Answer View All Answers
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
What is the difference between pure virtual function and virtual function?
Explain what is the advantage of a random access file?
how logic is used
What are the types of bitwise operator?
Explain the bubble sort algorithm.
Find MAXIMUM of three distinct integers using a single C statement
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
What does %c mean in c?
Difference between strcpy() and memcpy() function?
please explain every phase in the "SDLC" in the dotnet.
What happens if header file is included twice?
What is malloc and calloc?
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.