>> Does your understanding of programming language details differ from the view >> of >> SEI CERT C Coding Standard (from the Carnegie Mellon University)? >> https://cmu-sei.github.io/secure-coding-standards/sei-cert-c-coding-standard/rules/expressions-exp/exp34-c/ > My statement still stands. > Try to find the difference between the code and the examples on that website > yourself. > Tip: The relevant part is the "&"
Which functionality would you expect for the operator “address of”? Is it applied only after a pointer dereference attempt in this case? https://en.cppreference.com/c/language/operator_member_access > and in doubt look at the generated assembly > code. Can development interests grow also according to another clarification approach? Does &((struct name *)NULL -> b) cause undefined behaviour in C11? https://stackoverflow.com/questions/26906621/does-struct-name-null-b-cause-undefined-behaviour-in-c11 Regards, Markus
