0
One confusion!
How manny keywords in standard c language ? I think 32 but some where it's show 44. Which one is correct? Or there some different for 'standard keyword'?
4 Respostas
+ 5
Your right theres 44 but 32 of them are the original c keywords
C99 update - 5 more added in 1999
C11 update -7 more added in 2011
most others newer keywords start with a underscore _
making it 44
https://images.app.goo.gl/oUdYR6BYR8y2TZ1Y8
+ 5
There are 32 keywords in C language. Standard list is below
Keywords-
auto
double
int
struct
break
else
long
switch
case
enum
register
typedef
char
extern
return
union
continue
for
signed
void
do
if
static
while
default
goto
sizeof
volatile
const
float
short
signed
+ 3
Open this link your doubt will be clear
https://en.cppreference.com/w/c/keyword
0
Priyanshi💞 l got it . But why show 44 ?