wt is diference between int and int pointer as same as
float and float pointer and char and char pointer
Answer Posted / mohit (firozabad, a.d.college)
Pointer is a variable that hold the address of another
variable so address always integer type
The pointer type can not be char,float, etc
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What is #define?
What is actual argument?
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
Differentiate Source Codes from Object Codes
What is the difference between single charater constant and string constant?
What is the heap?
What is a memory leak? How to avoid it?
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.
Is flag a keyword in c?
I heard that you have to include stdio.h before calling printf. Why?
What is a keyword?
What is pointers in c with example?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
Explain null pointer.
What does 1f stand for?