What are Storage Classes in C ?
Answer Posted / santhi
there are 4 types of storage classes.they are-
extern,auto,register,static.
| Is This Answer Correct ? | 441 Yes | 50 No |
Post New Answer View All Answers
What is the difference between procedural and functional programming?
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
What is getch () for?
Explain how can I remove the trailing spaces from a string?
What is the -> in c?
What is a program?
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
What are # preprocessor operator in c?
How will you find a duplicate number in a array without negating the nos ?
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
How can you tell whether two strings are the same?
Why dont c comments nest?
What is switch in c?
Differentiate between null and void pointers.
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc