Computer Science, asked by shyamNayak, 8 months ago

find out KEYWORDS which are not common for C and C++ ?​

Answers

Answered by hasnainrabby
1

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

Answered by Anonymous
0

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

Similar questions