find out KEYWORDS which are not common for C and C++ ?
Answers
Answer:
Here is the answer.
Explanation:
There are also keywords that are reserved for C only:
Keywords for C only
_Far32 __far32 _Inline __inline
_Packed __packed _Pascal _Far32 _Pascal
_Far16 _Cdecl _Far16 _Pascal _Far16 _Fastcall __except
__finally __leave __try _inline
There are also a set of keywords that are specific to the C++ language:
Keywords for C++ only
asm bool catch class const_cast
delete dynamic_cast explicit false friend
inline mutable namespace new operator
private protected public reinterpret_cast static_cast
template this throw true try
typeid typename virtual using wchar_t
Answer:
C is syntactically unambiguous.
A given piece of C++ code can be difficult to reason about at compile time, whereas in C, what you see is generally what you get. C has less overhead, and thus produces leaner executables