PDA

Click to See Complete Forum and Search --> : Any alphabetic characters in operators?


Tygur
Feb 8th, 2002, 05:41 AM
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.

kedaman
Feb 8th, 2002, 05:49 AM
new, delete, delete[], throw, sizeof(),dynamic_cast<>(),
static_cast<>(),reinterpret_cast<>() and const_cast<>()

jim mcnamara
Feb 9th, 2002, 08:49 AM
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.