answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What function does the same thing as using the mathematical operator?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you define power function without using operator?

using pow() function.. ..


Which operator require to call c function using object name?

The operator required to call c function using object name is function object. Other operator names that deal with objects are structure dereference, structure reference, and indirection


How do you add two numbers with out using operator in c language?

Not possible. Of course you can call a function which does the addition for you, but function-calling is also an operator in C.


What is mathematical sentence?

A mathematical sentence consists of combined expressions using a comparison operator. It also creates a relationship between two expressions to create facts.


How operator overloading differ from function overloading?

Function overloading is multiple definition with different signatures(the parameters should be different) for the same function. The parameter list have to be different in each definition. The compiler will not accept if the return type alone is changed. Operator overloading is defining a function for a particular operator. The operator loading function can not be overloaded through function overloading.


Use five 0 to make 120 by using any mathematical operator.?

(0! + 0! +0! + 0! + 0!)!


Why a friend function cannot be used to overload the assignment operator?

Assignment(=) operator is a special operator that will be provided by the constructor to the class when programmer has not provided(overloaded) as member of the class.(like copy constructor). When programmer is overloading = operator using friend function, two = operations will exists: 1) compiler is providing = operator 2) programmer is providing(overloading) = operator by friend function. Then simply ambiguity will be created and compiler will gives error. Its compilation error.


Is it possible to compare the return value of a function call with another value using a relational operator?

pancakes


What is the square function in Excel?

The square root function is SQRT, like this:=SQRT(value)To square a number, either multiply it by itself, using the POWER function or the power operator. If you had a value in cell A2, all of the following would do the same thing:=A2*A2=POWER(A2,2)=A2^2


What is the focus I the aspire math test?

Using mathematical reasoning


Mathematical designs patterns using arithmetic progression?

what do you mean by mathematical designs using arithmetic progression


How pointer is declared using address operator?

int *ptr; PS: I don't know what do you mean by 'using address operator'