The this operator is not a c operator. It is a c++ keyword. It is equivalent to an r-value pointer to the current instance of an object. It is useful when resolving between object members and method parameters.
+ += - -= * *= / /= % %= = == != <= >= & && | ^ ~ << <<= >> >>= , [] () are the basic operator in TURBO C
conditional operator , size of operator , membership operator and scope resulation operator can not be overload in c++
:: operator can not be used in C.
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.
No. Operator and/or function overloading is only a C++ thing.
Conditional Operator- Its the only ternary operator in c/c++.- Its syntax is-(condition)?statement1:statement2;-Shruti Jain
C does not support operator overloading. If you mean C++ operator overloading, it depends on exactly what you wanted to do. If you wanted to '+' to strings, then you could write: string operator+(string a, string b) { // do something }
unary + is the only dummy operator in c,...
+ is an example, one of many, of a binary operator in C or C++ a = b + c; // for usage example
There is no "power" operator in C or C++. You need to the use the math library function pow().
C and C operation
calloc operator,malloc operator