C - Storage Classes

page 1 out of 2

page 1 out of 2


Question 1     

How many storage class specifiers in "C" language?






Question 2     

what are the different storage types in C?







Question 3     

For different storage classes properties that may vary?







Question 4     

What is the default value of static storage?






Question 5     

What is the storage location of registers ?






Question 6     

What is the scope of static storage type?






Question 7     

Which of the following is faster exexution among all the storage types?







Question 9     

What is the default storage type in C?






Question 10     

What is the expected output of the below code snippet?

#include<stdio.h>
int main()
{
 	
    int n=5;
    register static int n = 0;
    printf("%d",i);
    
    
    return 0;
}





page 1 out of 2

page 1 out of 2


Sign Up Page

Oops!!

To view the solution need to Login



Score : 0 / 0
L
o
a
d
i
n
g
.
.
.