advantages of pointers?
Answers were Sorted based on User's Feedback
Answer / ganesh
pointer variable is used to store the memory address of the another variable
Is This Answer Correct ? | 12 Yes | 1 No |
Answer / rams
Pointer is a variable that can store the address of another variable to which it's pointing
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sanjay bhosale
Using pointers we can directly manipulate or access memory which is faster hence it increases execution time.
Is This Answer Correct ? | 1 Yes | 0 No |
What is the use of clrscr?
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
11 Answers HCL, Vector, Vector India, Vector Solutions, Wipro,
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,
How do you write a program which produces its own source code as its output?
Which is the best website to learn c programming?
#define DCHAR char* typedef char* TCHAR; if using these following variables will be declared like DCHAR ch1, ch2; TCHAR ch3, ch4; then what will be types of ch1, ch2, ch3 and ch4?
The difference between printf and fprintf is ?
What is the difference between if else and switchstatement
Explain what is a pragma?
Design a program using an array that lists even numbers and odd numbers separately from the 12 numbers supplied by a user.
diff between exptected result and requirement?
What does main () mean in c?