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
in linking some of os executables are linking name some of them
What is pointer in c?
Is it better to use a macro or a function?
Explain why c is faster than c++?
The purpose of this exercise is to benchmark file writing and reading speed. This exercise is divided into two parts. a). Write a file character by character such that the total file size becomes approximately >10K. After writing close the file handler, open a new stream and read the file character by character. Record both times. Execute this exercise at least 4 times b). Create a buffer capable of storing 100 characters. Now after generating the characters, first store them in the buffer. Once the buffer is filled up, store all the elements in the file. Repeat the process until the total file size becomes approximately >10K.While reading read a while line, store it in buffer and once buffer gets filled up, display the whole buffer. Repeat the exercise at least 4 times with different size of buffer (50, 100, 150 …). Records the times. c). Do an analysis of the differences in times and submit it in class.
How can you check to see whether a symbol is defined?
Is null equal to 0 in sql?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
What is merge sort in c?
In C programming, how do you insert quote characters (‘ and “) into the output screen?
How can I get the current date or time of day in a c program?
What is the use of volatile?
What is strcpy() function?
Explain what are the advantages and disadvantages of a heap?
Explain how do you search data in a data file using random access method?