answersLogoWhite

0

Most likely the function call (yes, it is an operator in C), but of course it is up to you.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

Use of scope resolution operator in C programming?

:: operator can not be used in C.


What is the operator is used to allocate the memory in c plus plus?

calloc operator,malloc operator


What is the order of precedence with regard to the operator used in embedded C program?

Operator precedence in embedded C is exactly the same as in standard C.


When do we use an address operator in c'?

In C we use & operator while giving address of some variable to some pointer variable. & operator is also used in scanf().


Which operator is used for deallocating memory in c plus plus?

delete


What are the basic operator in turbo c?

+ += - -= * *= / /= % %= = == != <= >= & && | ^ ~ << <<= >> >>= , [] () are the basic operator in TURBO C


What is the operator that cannot be overloaded in c plus plus and java?

conditional operator , size of operator , membership operator and scope resulation operator can not be overload in c++


Why and operator can not be used in string of c program?

Any character can be used in string, except for \\0. char example [] = "A&B|C";


What is the memory management operator in c plus plus?

There is no memory management operator in C++ -- it is an unmanaged language. You use the C++ new operator to allocate memory, and use the C++ delete operator to release previously allocated memory.


What are the operators used in C describe with example?

Operators used in c areBinary operatorAirthematic operatorlogical operatorRelational operatorBitwise operatorUnary operatorTernary operator


Is it possible to do operator overloading in c?

No. Operator and/or function overloading is only a C++ thing.


What are the advantage and disadvantage of operator overloadin?

Operator overloading allows c/c++ operators to have user defined meanings on user defined types. For example + operator is used to add to numbers but we can also use it for concatenating a string the only limitation is you cannot change the literal meaning of the operator.