@ in front of the operator means that no warnings / errors should be reported from the result of this operator. Simply put, an error message is suppressed for this statement.
This is especially useful when, for example, @fclose(fopen("file.txt",w")) , which may cause several warnings / errors depending on the situation, but with @ before it all these warnings or errors will be suppressed.
Stoic source share