what is the definition of storage classes?
Answers were Sorted based on User's Feedback
Answer / shobana
variables in C can have not only data type but also storage
class that provides information about their location and
visibility. The storage class decides the portion of the
program within which the variables are recognized.
| Is This Answer Correct ? | 38 Yes | 7 No |
Answer / nakul sharma
Storage class in C language defines the memory type in which any variable is going to be stored in C program.
| Is This Answer Correct ? | 5 Yes | 8 No |
Answer / venkata mahesh
at the level of the language as a storage class persistence
is defined on ... A program written in C is passed through
a precompilation phase in which the statements related to
persistence are converted into their corresponding storage
system calls.
| Is This Answer Correct ? | 8 Yes | 16 No |
Array is an lvalue or not?
What are the 32 keywords in c?
Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)
main() { printf(5+"Vidyarthi Computers"); }
What is the use of sizeof?
What is bubble sort technique in c?
Write a program to reverse a linked list in c.
Is sizeof a keyword in c?
What are types of functions?
What are the different flags in C? And how they are useful? And give example for each in different consequences?
Diff: between this 2 classes in terms of memory class A { int i; char c; double d; }; class A { double d; int i; char c; }; How it is calculating?
What is string concatenation in c?