Recent questions tagged storage-classes-in-c

1 votes
1 answer
3
Can an array store elements of different storage classes?
1 votes
2 answers
5
find the output of following programmain(){ extern int a; a=5; printf("%d",a);}
0 votes
2 answers
9
2 votes
0 answers
10
Q. What is the output of following program?int main(){ register int Data =10; int *piSumData = NULL; piSumData = &Data; *piSumData = 5; printf("%d",*piSumData); }1. Run ...
0 votes
0 answers
12
what is the use of type qualifiers in C? provide some examples.