What are pointers in C?
Answers were Sorted based on User's Feedback
Answer / sagar hande
Pointer is variable that contains memory location of
another variable
| Is This Answer Correct ? | 33 Yes | 0 No |
Answer / mukesh kumar
pointer is variable it contain's or store the address of
other variable.
| Is This Answer Correct ? | 13 Yes | 0 No |
Answer / tarun gupta
Pointer is a variable. that contain's the M/r location of
another variable.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / esakkimuthu.s.
pointer is a variable which contain the address of another variable.pointer variable must be declare with * operator
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / rajgopal
pointer is variable which store the addrss of another variable
| Is This Answer Correct ? | 0 Yes | 0 No |
What is difference between array and pointer in c?
Write a C program on Centralized OLTP, Decentralized OLTP using locking mechanism, Semaphore using locking mechanism, Shared memory, message queues, channel of communication, sockets and a simple program on Saving bank application program using OLTP in IPC?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
Write a program to generate random numbers in c?
What are the data types present in c?
Can you think of a way when a program crashed before reaching main? If yes how?
size maximum allocated by calloc()
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
who invented c
Calculate 1*2*3*____*n using recursive function??
Explain threaded binary trees?
Write a program in C to convert date displayed in gregorian to julian date