what is the exact definition for pointer?
Answers were Sorted based on User's Feedback
Answer / rasmi
Pointer is a variable used to store the address in
allocated memory location.
| Is This Answer Correct ? | 9 Yes | 2 No |
Answer / sridevi.c
A pointer is a programming language data type whose value
refers directly to(or'points to')another value stored
elsewhere in the computer memory using its address.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / tekchand nanda
In computer science, a pointer is a programming language
data type whose value refers directly to (or "points to")
another value stored elsewhere in the computer memory using
its address.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / reddy hanuma kishore
A pointer is a variable that stores the addrss of another
variable.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / k.vatsalya
A Pointer is a special kind of variable in c and c++ that
holds the address of the another variable...
Pointer and Arrays are the two sides of the coin...to write
any kind of non trival applications in c pointers are
required....
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / mahesh kumar
Pointer is a programming concept, used for getting the
address of any variable.
| Is This Answer Correct ? | 0 Yes | 0 No |
how to store only time in a data base table
What is oracle join syntax?
How to retrieve 5th highest sal from emp table?
What do you mean by merge in oracle?
does the query needs a hint to access a materialized view?
Which dictionary view(s) would you first look at to understand or get a high-level idea of a given Advanced Replication environment?
What is a system tablespace and when it is created?
What is an oracle transaction?
13. Display the second to fifth characters in each client name.
create or replace procedure show_tab_rec ( P_tab VARCHAR2 ) IS cmd varchar2(50); begin cmd := 'select * from '|| P_tab; for int in ( execute immediate cmd ) loop dbms_output.put_line ( int.ename||' '||int.deptno); end loop; end; when i m compling this procedure i m getting this error PLS-00103: Encountered the symbol "IMMEDIATE" when expecting one of the following: . ( ) , * @ % & | = - + < / > at in is mod remainder not range rem => .. <an exponent (**)> <> or != or ~= >= <= <> and or like LIKE2_ LIKE4_ LIKEC_ between || multiset member SUBMULTISET_ PLZ solve this error give this question answer asap Thanks advance.......
how many outer joins are used in a single sql query? is there any limitations for using of outer joins?
2 Answers BOB Technologies, Cap Gemini, IBM,
Give the constructs of a package, function or a procedure.