What are pointers in C?
Answers were Sorted based on User's Feedback
Answer / sagar hande
Pointer is variable that contains memory location of
another variable
| Is This Answer Correct ? | 33 Yes | 0 No |
Answer / mukesh kumar
pointer is variable it contain's or store the address of
other variable.
| Is This Answer Correct ? | 13 Yes | 0 No |
Answer / tarun gupta
Pointer is a variable. that contain's the M/r location of
another variable.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / esakkimuthu.s.
pointer is a variable which contain the address of another variable.pointer variable must be declare with * operator
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / rajgopal
pointer is variable which store the addrss of another variable
| Is This Answer Correct ? | 0 Yes | 0 No |
How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;
What is scanf () in c?
2.Given the short c program that follows a. make a list of the memory variables in this program b.which lines of code contain operations that change the contents of memory? what are those operations? Void main( void) { Double base; Double height; Double area; Printf(“enter base and height of triangle :”); Scanf(“%lg”, &base); Scanf(“%lg”, &height); Area=base*height/2.0; Printf(“the area of the triangle is %g \n”,area); }
Explain how do I determine whether a character is numeric, alphabetic, and so on?
wt is d full form of c
What is a string?
progrem to generate the following series 1 12 123 1234 12345
How can type-insensitive macros be created?
What is auto keyword in c?
what is the function of void main()?
what is compiler
write a program to convert a expression in polish notation (postfix) to inline (normal)