what is the difference between normal variables and pointer
variables..............
Answers were Sorted based on User's Feedback
Answer / naga raju
a pointer is nothing more than an address, and a pointer variable is just a variable that can store an address.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / vrushali
Hi Vighnesh,
Please explain the term data security.....
Thanks
| Is This Answer Correct ? | 13 Yes | 13 No |
Answer / priyanka
It gives the value stored at a particular address
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / rafiya
Variable is a name given to the memory location of the specified data type.
Pointers are the variables which are capable of storing another variable's address.
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / nibedita
Pointers will store the variable address and normal variable
will store the variable value. But if you will declare int *p;
int i=10; and you want to accsess the memory of i you have
to write p=&i; But i can access directly the memory adress
of variable through printf("%d",&i); Then wht is the
difference between pointer and normal variable?
| Is This Answer Correct ? | 0 Yes | 3 No |
#include<stdio.h> int fun(); int i; int main() { while(i) { fun(); main(); } printf("hello \n"); return 0; } int fun() { printf("hi"); } answer is hello.how??wat is tat while(i) mean?
What does sizeof return c?
What is difference between structure and union in c programming?
How do you write a program which produces its own source code as output?
Discuss similarities and differences of Multiprogramming OS and multiprocessing OS?
Which of these functions is safer to use : fgets(), gets()? Why?
without using control structures and control structures find the max and min of given 2 nos
What does calloc stand for?
What are the types of type specifiers?
write a program to copy the string using switch case?
Is there anything like an ifdef for typedefs?
struct node {struct node*temp,*new} prinf("%d",sizeof(struct node));