what is the definition of storage classes?

Answers were Sorted based on User's Feedback



what is the definition of storage classes?..

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

what is the definition of storage classes?..

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

what is the definition of storage classes?..

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

Post New Answer

More C Interview Questions

what will be the output off the following program? #include<stdio.h> int main() { int a; a=015+0*71+5; printf("%d,a"); return0; }

9 Answers   HCL,


Why do u use # before include in a C Progam?

9 Answers   IBM,


what are the various memory handling mechanisms in C ?

4 Answers   HP,


Write a program to maintain student’s record. Record should not be available to any unauthorized user. There are three (3) categories of users. Each user has its own type. It depends upon user’s type that which kind of operations user can perform. Their types and options are mentioned below: 1. Admin (Search Record [by Reg. No or Name], View All Records, Insert New Record, Modify Existing Record) 2. Super Admin (Search Record [by Reg. No or Name], View All Records, Insert New Record, Modify Existing Record, Delete Single Record) 3. Guest (Search Record [by Reg. No or Name], View All Records) When first time program runs, it asks to create accounts. Each user type has only 1 account (which means that there can be maximum 3 accounts). In account creation, following options are required: Login Name: <6-10 alphabets long, should be unique> Password: <6-10 alphabets long, should not display characters when user type> Confirm Password: <must match with the Password, should not display characters when user type> Account Type: <One character long, A or S or G where A for Admin, S for Super Admin, G for Guest> Login Name, Password and Account Type should be stored in a separate file in encrypted form. (Encryption means that actual information should be changed and Decryption means that Encrypted information is changed back to the actual information) If any of the above mentioned requirement(s) does not meet then point out mistake and ask user to specify information again. When Program is launched with already created accounts, it will ask for user name and password to authenticate. On successful authentication, give options according to the user’s type.

0 Answers  


Explain how can type-insensitive macros be created?

0 Answers  






What is the use of static variable in c?

0 Answers  


What is oops c?

0 Answers  


Can stdout be forced to print somewhere other than the screen?

0 Answers  


What is pointers in c?

0 Answers  


What is the -> in c?

0 Answers  


Write a C program to help a HiFi’s Restaurant automate its breakfast billing system. Your assignment should implement the following items: a. Show the customer the different breakfast items offered by the HiFi’s Restaurant. b. Allow the customer to select more than one item from the menu. c. Calculate and print the bill to the customer. d. Produce a report to present your complete program and show more sample output. Assume that the HiFi’s Restaurant offers the following breakfast menu: Plain Egg $2.50 Bacon and Egg $3.45 Muffin $2.20 French Toast $2.95 Fruit Basket $3.45 Cereal $0.70 Coffee $1.50 Tea $1.80

0 Answers  


GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA

0 Answers  


Categories