Intellisense showing error when variable length arrays are declared, even though the compiler supports them. #7986
Unanswered
saifullah rahman (SciSaif)
asked this question in
Q&A
Replies: 1 comment 11 replies
|
It's working for me. Can you run C/C++: Log Diagnostics and see what it reports for the IntelliSense Mode? |
11 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


Uh oh!
There was an error while loading. Please reload this page.
#7593 (comment)
i have asked this problem before.
i started having the same issue again.
but this time if i do something like
const int n = 5;
int arr[n];
it works
but if i do
int n = 5;
int arr[n];
it shows the same error
Sean McManus (@sean-mcmanus)
All reactions