What is a pointer?
Answer / gsrinivas
pointer is variable which stores the address of the memory
location
| Is This Answer Correct ? | 26 Yes | 2 No |
a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
How can you increase the allowable number of simultaneously open files?
What is that continue statement??
What does it mean when a pointer is used in an if statement?
what is the difference between const char *p, char const *p, const char* const p
5 Answers Accenture, Aricent, CTS, Geometric Software, Point Cross, Verizon,
Find the highest of three numbers and print them using ascending orders?
What is the use of a conditional inclusion statement in C?
code for bubble sort?
what is use#in c
dennis ritchie invented C language in AT&T bell laboratory what is the extension of AT&T?
12. Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV