I'm just wondering: Are there any operators in C++ that contain alphabetic characters? I don't think there are, but I don't know everything about C++.
For example, Visual Basic has And, Or, and Xor, which all contain alphabetic characters.
Printable View
I'm just wondering: Are there any operators in C++ that contain alphabetic characters? I don't think there are, but I don't know everything about C++.
For example, Visual Basic has And, Or, and Xor, which all contain alphabetic characters.
new, delete, delete[], throw, sizeof(),dynamic_cast<>(),
static_cast<>(),reinterpret_cast<>() and const_cast<>()
IF you mean elementary arithmetic or bitwise operators: no.
Ked showed you stuff which are a kind of operatoir, but not like I think you meant. C does a lot of stuff that does not translate to VB. Contrariwise, VB has a lot of functions that must be coded from scratch in C.