Бағдарламалау тілі: Нұсқалар арасындағы айырмашылық

Content deleted Content added
45-жол:
 
The following C language fragment is syntactically correct, but performs operations that are not semantically defined (the operation <tt>*p >> 4</tt> has no meaning for a value having a complex type and <tt>p->im</tt> is not defined because the value of <tt>p</tt> is the [[pointer (computer programming)|null pointer]]):
 
-->
<source lang="c">
complex *p = NULL;
complex abs_p = sqrt(*p >> 4 + p->im);
</source>
-->
 
==Процедуралық-бағдарланған бағдармалау тілі==