CSE MCQs :: C-MCQs
- Automatic variables are allocated space in the form of a:
- Default storage class if not any is specified for a local variable, is auto:
- What linkage does automatic variables have?
-
What is the output of this C code?
int main()
{
auto i = 10;
const auto int *p = &i;
printf("%d\n", i);
} - Automatic variables are variables that are?
- Automatic variables:
-
What is the output of this C code?
void main()
{
int x;
}
here x is?