What are Storage Classes in C ?
Answer Posted / nagalakshmanarao
storage classes in c defines the scope and lifetime of variables.the storage classes are important only in multifunction and multiple file programms.
storage classes are 4 types:they are 1:auto
2:static
3:extern
4:register
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Are enumerations really portable?
Write a program to swap two numbers without using a temporary variable?
What are the 5 types of inheritance in c ++?
Write a program which returns the first non repetitive character in the string?
What is c programming structure?
Can you return null in c?
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
What is a #include preprocessor?
What is %s and %d in c?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
What is p in text message?
Dont ansi function prototypes render lint obsolete?
Explain what is the stack?
Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250
What are the __date__ and __time__ preprocessor commands?