Related questions
snprintf and Visual Studio 2010
I'm unfortunate enough to be stuck using VS 2010 for a project, and noticed the following code still doesn't build using the non-standards compliant compiler:
#include <stdio.h>
#include <stdlib.h>
int main (void)
{
char buffer[512];
snprintf(…
error C2275 : illegal use of this type as an expression
Since yesterday, I've been facing a compiling error for my C project. The project itself consists on creating a service that will make some tasks.
I don't what has changed since yesterday, but this morning, my code can't compile anymore.
…