Fatal Error C1091
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at Fatal Error C1091.
compiler limit: string exceeds 'length' bytes in length
A string constant exceeded the current limit on the length of strings.
You might want to split the static string into two (or more) variables and use strcpy_s to join the result as part of the declaration or during run time.
Show: