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 |
What is static and volatile in c?
what is the use of fflush() function?
write a program to generate 1st n fibonacci prime number
What is chain pointer in c?
4) Write a program that takes a 5 digit number and calculates 2 power that number and prints it. i have done maximum par but i m findind problem in the commented area. please help...
why return type of main is not necessary in linux
diff .between strcture and union
State the difference between x3 and x[3].
Write c-code for 5+55+555+5555+55555+555555+5555555. Output will be it's answer...
Write down the program to sort the array.
Write a program to reverse a given number in c?
There are N egg baskets and the number of eggs in each basket is a known quantity. Two players take turns to remove these eggs from the baskets. On each turn, a player must remove at least one egg, and may remove any number of eggs provided they all belong to the same basket. The player picking the last egg(s) wins the game. If you are allowed to decide who is going to start first, what mathematical function would you use to decide so that you end up on the winning side? Upload a C program to demonstrate the behaviour of the game.