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 |
Write down the program to sort the array.
main() { int x=10,y=15; x=x++; y=++y; printf("%d %d\n",x,y); } output??
19 Answers EBS, Ramco, Sangwin, TCS,
Is main an identifier in c?
Why doesnt long int work?
What is the difference between functions abs() and fabs()?
What is the scope of static variables in c language?
for(i=1;i>0;i++); printf("i=%d",i); what will be the answer????
write c program to display output 10(10+20)+(10+20+30)+ ... n term
0 Answers Hindustan Gum Chemicals,
main() { printf(5+"good morning"); printf("%c","abcdefgh"[4]); }the o/p is morning and e...how someone explain
Write a program to accept a character & display its corrosponding ASCII value & vice versa?
what is the role you expect in software industry?
What is volatile