what is pointer?
Answers were Sorted based on User's Feedback
Answer / likhit gatagat
pointers in C are variables storing address of some another
memory variable/location to which they are pointing
e.g: int *p;
int s;
p=&s;
now if s has memory address 101 then p will be storing
this address i.e pointing to variable s
| Is This Answer Correct ? | 17 Yes | 0 No |
Answer / manoj singh
pointer is a just like a simple veriable as hold down the
address of another veriable.
it's value denoted by *.
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / vijaya
By default functions are extern, so it is visible from the outer files. If it is as static then it is in invisible from the outer files.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sridhar
Pointers are the variables,which are used to store address of the another variable.
| Is This Answer Correct ? | 0 Yes | 0 No |
what are bitwise shift operators?
implement NAND gate logic in C code without using any bitwise operatior.
What library is sizeof in c?
1)what is the error in the following stmt where str is a char array and the stmt is supposed to traverse through the whole character string str? for(i=0;str[i];i++) a)There is no error. b)There shud be no ; after the stmt. c)The cond shud be str[i]!='\0' d)The cond shud be str[i]!=NULL e)i shud be initialized to 1
simple program of graphics and thier outpu display with a want what is out put of graohics in c language
Which control loop is recommended if you have to execute set of statements for fixed number of times?
how can we use static and extern?and where can we use this?
what is the output of below pgm? void main() { int i=0; if(i) printf("pass"); else printf("fail"); }
What is the difference between ++a and a++?
Write a program to reverse a given number in c language?
Who developed c language?
What is hashing in c?