Which of the following about automatic variables within a
function is correct ?
a.its type must be declared before using the variable
b.they are local
c.they are not initialised to zero
d.they are global.
Answer Posted / subbu
options a,b,c are correct
| Is This Answer Correct ? | 5 Yes | 9 No |
Post New Answer View All Answers
Write a program to reverse a string.
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
How can I do peek and poke in c?
What is self-referential structure in c programming?
How can I automatically locate a programs configuration files in the same directory as the executable?
What is stack in c?
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.
How can I find out if there are characters available for reading?
How do you print only part of a string?
Is it acceptable to declare/define a variable in a c header?
plz let me know how to become a telecom protocol tester. thank you.
Explain the red-black trees?
Where is c used?
What are the 5 data types?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }