What is diffrance between declaration and defination of a variable or function
Answer Posted / r.ramakrishna
Declaration means allocating memory for the variable.
Definition means defining address of the variable in a class.
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What is wrong with this statement? Myname = 'robin';
Explain function?
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
List the variables are used for writing doubly linked list program.
How to write a code for implementing my own printf() and
scanf().... Please hep me in this... I need a guidance...
Can you give an coding for c... Please also explain about
the header files used other than #include
What is a node in c?
Is it better to use malloc() or calloc()?
Explain what is the benefit of using #define to declare a constant?
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
Explain what is #line used for?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
What is volatile variable in c?
What oops means?
What do you mean by invalid pointer arithmetic?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above