What this code mean <body t="0x6"> | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What this code mean <body t="0x6">

26th Dec 2016, 6:50 AM
Yassin Hussein
Yassin Hussein - avatar
2 Answers
+ 3
@Nahuel Ovejero: I think you make a mistake and you've post in the wrong place ;) @Yassin Hussein: The "t" attribute isn't a standard attribut of HTML specifications... If you find it in a page, it should probably be used as a custom attribut by a JS script to store/retrieve data/information ^^
26th Dec 2016, 7:37 PM
visph
visph - avatar
+ 1
from stackoverflow: There's no such thing as "null pointer exception" in C++. The only exceptions you can catch, is the exceptions explicitly thrown by throw expressions (plus, as Pavel noted, some standard C++ exceptions thrown intrinsically by standard operator new, dynamic_cast etc). There are no other exceptions in C++. Dereferencing null pointers, division by zero etc. does not generate exceptions in C++, it produces undefined behavior. If you want exceptions thrown in cases like that it is your own responsibility to manually detect these conditions and do throw explicitly. That's how it works in C++. Whatever else you seem to be looking for has noting to do with C++ language, but rather a feature of particular implementation. In Visual C++, for example, system/hardware exceptions can be "converted" into C++ exceptions, but there's a price attached to this non-standard functionality, which is not normally worth paying.
26th Dec 2016, 6:53 AM
Nahuel
Nahuel - avatar