Posts by Murilo Souza • 41 points
1 post
-
4
votes1
answer36
viewsA: What are the functions of these backslashes in this sentence? http.POST("{ "hello ": "world "}");
These inverted bars serve to escape the next character, ie it will be understood literally as ", and not as closure of string. Without these bars, the content within their function would be a string…