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 meant by type specifiers?
Why array starts with index 0
Explain the Difference between the New and Malloc keyword.
What are the different types of endless loops?
how does the for loop work actually..suppose for the following program how it ll work plz explain to me for(i=5;i>=0;i--) prinf(i--);
What is the difference between char a[] = "string"; and char *p = "string"; ?
14 Answers Adobe, Honeywell, TCS,
1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
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 does. int *x[](); means ?
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
what is diognisis?
What are the types of unary operators?