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 / uma

auto is a defult data type in c na???then have to declare??
but c answer is some what ok....but exactly i think b...
i go for b

Is This Answer Correct ?    4 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is operator promotion?

635


Where are local variables stored in c?

576


What are derived data types in c?

618


What do you mean by command line argument?

650


a value that does not change during program execution a) variabe b) argument c) parameter d) none

699






What is the difference between near, far and huge pointers?

630


How do I use void main?

637


In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none

729


Explain how does flowchart help in writing a program?

636


Can a program have two main functions?

575


write a program to find out prime number using sieve case?

1646


#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }

670


what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values

1263


program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)

1631


Explain the difference between malloc() and calloc() function?

605