answersLogoWhite

0


Best Answer

a. adding and subtracting the integer values

b. adding and subtracting the pointers

c. incrementing and decrementing the pointers

other than tis pointer operations include relational operations such as =,<,>.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are the operations that can be performed using a pointer expression?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

Circular queue in linear data structure?

The queue is a linear data structure where operations of insertion and deletion are performed at separate ends also known as front and rear. Queue is a FIFO structure that is first in first out. A circular queue is similar to the normal queue with the difference that queue is circular queue ; that is pointer rear can point to beginning of the queue when it reaches at the end of the queue. Advantage of this type of queue is that empty location let due to deletion of elements using front pointer can again be filled using rear pointer.


Can you give the explanation for various operations in a queue implementation using arrays?

The following are operations performed by queue in data structuresEnqueue (Add operation)Dequeue (Remove operation)Initialize


Can stack be as a pointer?

A stack is a data structure in which last item inserted is taken out first . That's why they are known as LIFO (last in first out). Inserting an item in stack is termed as push and taking an item out from stack I s termed as pop. Stack pointer is the pointer that points to the top of the stack or that points the item at the top of the stack and help in adding or deleting the item from the top of stack.


When using the Format Painter the pointer takes the shape of a?

a paintbrush


What are the operations take more time in the implementation of list using singly linked list?

Random access is not possible in constant time; it must be done in linear time. This means insertions and extractions are amortized operations unless you currently hold a pointer or reference to the node to be extracted or the node preceding the insertion point, such as the tail node.

Related questions

An expression with only numbers and operations symbols?

it using the word x and y


How do you evaluate an expression with more than two operation symbol without exponent and parenthesis?

In Evaluating Expression first,replace each letter in the expression with the assigned value. second,perform the operations in the expression using the correct order of operations and the last you got the answer


How can you evaluate a expression?

replace the variables with the given values and simplify using the order of operations.


What is the rules for evaluating expressions?

The various operations within the expression are carried out using the order of operations: BIDMAS (UK) or PEMDAS (US).


Why is it important to apply order of operations when evaluating expressions?

If you change the order of operations, you will get a different result. The person who wrote the expression had a specific order of operations in mind (using generally-accepted rules), so arbitrarily using some other order of operations is, quite simply, wrong.


Difference between circular queue and De queue?

The queue is a linear data structure where operations of insertion and deletion are performed at separate ends also known as front and rear. Queue is a FIFO structure that is first in first out. A circular queue is similar to the normal queue with the difference that queue is circular queue ; that is pointer rear can point to beginning of the queue when it reaches at the end of the queue. Advantage of this type of queue is that empty location let due to deletion of elements using front pointer can again be filled using rear pointer. A double ended queue (or deque ) is a queue where insertion and deletion can be performed at both end that is front pointer can be used for insertion (apart from its usual operation i.e. deletion) and rear pointer can be used for deletion (apart from its usual operation i.e. insertion)


How do you do evaluate expression?

You have to substitute a value for the letter variable in the expression. This is what we call evaluating the algebraic expression. An example would be 3x+1=7, when x=2.


What does the value of an expression mean?

If you replace variables in an expression by numbers (in case there are any variables) and then do the indicated operations, you get a number. That final number is the "value" of the expression.


What are the important applications of pointer?

the execution time of programe is fast using the pointer


Can you give the explanation for various operations in a queue implementation using arrays?

The following are operations performed by queue in data structuresEnqueue (Add operation)Dequeue (Remove operation)Initialize


Circular queue in linear data structure?

The queue is a linear data structure where operations of insertion and deletion are performed at separate ends also known as front and rear. Queue is a FIFO structure that is first in first out. A circular queue is similar to the normal queue with the difference that queue is circular queue ; that is pointer rear can point to beginning of the queue when it reaches at the end of the queue. Advantage of this type of queue is that empty location let due to deletion of elements using front pointer can again be filled using rear pointer.


What Order of operations is defined as?

The order of operations is a rule that tells the correct sequence of steps for evaluating a math expression. We can remember the order using PEMDAS: Parentheses, Exponents, Multiplication and Division (from left to right), Addition and Subtraction (from left to right).