what is pointer?
Answers were Sorted based on User's Feedback
Answer / guest
a pointer is a a variable that contains the address of an
another variable
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / gyanendra
Pointer is used to store address of any variable.
int a,*p;
p=&a//p store address of a
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / j naveen reddy
Pointer is a reference variable, as it refers the address of the other variable
| Is This Answer Correct ? | 0 Yes | 0 No |
write a program to check whether a given integer is a strong number or not? [Hint: 145=1!+4!+5! =1+24+120 =145]
What is 1f in c?
What is the process to generate random numbers in c programming language?
Is that possible to add pointers to each other?
int x=sizeof(!5.856); What will value of variable x?
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
When the macros gets expanded?
Write a c pgm for leap year
11 Answers College School Exams Tests, IBM, TCS,
What is the difference between break and continue?
C program to find frequency of each character in a text file?
Why we use conio h in c?
Describe for loop and write a c program to sum the series X + x2/2! + x3 /3! + …….. up to fifteen terms.