regarding the scope of the varibles;identify the incorrect
statement:
a.automatic variables are automatically initialised to 0
b.static variables are are automatically initialised to 0
c.the address of a register variable is not accessiable
d.static variables cannot be initialised with any expression
Answer Posted / guest
a
| Is This Answer Correct ? | 13 Yes | 1 No |
Post New Answer View All Answers
What is variable declaration and definition in c?
What does c mean in standard form?
What does the characters “r” and “w” mean when writing programs that will make use of files?
Can one function call another?
What is the difference between pure virtual function and virtual function?
Why is extern used in c?
What is a newline escape sequence?
Which is better between malloc and calloc?
What is string concatenation in c?
Why is this loop always executing once?
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 does return 1 means in c?
What are data types in c language?
What is the maximum length of an identifier?
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.