Whenever I create an array in C using sublime text editor I get following error
Asked
Active
Viewed 36 times
-2
-
4Indeed, this question appears to be more suited to Stack Overflow, or perhaps one of the programming-themed sites. When you post your question there, it is likely it will be best received if you post your code as text rather than as pictures. – dhag Oct 04 '17 at 19:22
1 Answers
3
Don't separate:
char a[4];
a[4] = {...};
Put it all on one line:
char a[4] = {...};

Scott Presnell
- 226