what is the difference between normal variables and pointer
variables..............
Answer Posted / guest
normal variables carry the specified data where as the
pointer variable carried the address of the specified data,,,,,
eg: if we give int x =10; ptr p=*x;here x is the normal
variable carries 10 and pointer variable is p which carried
address of the integer variable x.
| Is This Answer Correct ? | 215 Yes | 31 No |
Post New Answer View All Answers
What is c mainly used for?
How would you obtain the current time and difference between two times?
What is adt in c programming?
What is the difference between class and object in c?
How do you write a program which produces its own source code as output?
When do we get logical errors?
Explain pointer. What are function pointers in C?
What is structure data type in c?
How do you define CONSTANT in C?
What is wrong with this declaration?
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 disadvantages of external storage class?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
How can I prevent another program from modifying part of a file that I am modifying?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;