No, it’s a syntax error. It can’t be part of a multiplication since there cannot be an identifier with the name of a keyword.
The only way to make this a valid part of a C program is
- as part of a string literal
- as part of a multibyte character constant
- as part of a comment
- when
int
is a macro expanding to something else that makes it valid - within an
#ifdef
‘ed out code segment - something else I forgot
2
solved What does *int mean? [closed]