Answer Posted / kisna
by using two pointers
| Is This Answer Correct ? | 5 Yes | 2 No |
Post New Answer View All Answers
regarding pointers concept
If the size of int data type is two bytes, what is the range of signed int data type?
Write a program with dynamically allocation of variable.
What is a scope resolution operator in c?
Explain low-order bytes.
Explain how do you convert strings to numbers in c?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
Where does the name "C" come from, anyway?
What is volatile, register definition in C
Write a program to show the change in position of a cursor using c
How can I avoid the abort, retry, fail messages?
Can math operations be performed on a void pointer?
Can you subtract pointers from each other? Why would you?
what are bit fields? What is the use of bit fields in a structure declaration?
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?