\ at the very end of a line is used to continue a line onto the next line. You can also add \n (and possibly \r) to add line feeds and carriage returns where you want them too.
is this method useful also to write javascript like this?
<html>
<head>
<script type="text/javascript">
function UPGRADE( )
{
  var tbl = document.getElementById("TBL");
  var rows = tbl.getElementsByTagName("tr");
  var cells = rows[0].getElementsByTagName("td");Â
  cells[1].innerHTML = 20;
  var cells = rows[0].getElementsByTagName("td");
  cells[2].innerHTML = "IR DISABLED";
  var cells = rows[1].getElementsByTagName("td");Â
  cells[1].innerHTML = "90%";
  var cells = rows[1].getElementsByTagName("td");
  cells[2].innerHTML = "TOO MUCH";
}
</script>
</head>
<body>
<table id="TBL" border="1" cellpadding="5">
<tr><td>Temperature</td><td>18</td><td>IR ACTIVE</td></tr>
<tr><td>Humidity (RH)</td><td>80%</td><td>Good</td></tr>
<tr><td>Light</td><td>900</td><td>OK</td></tr>
</table>
<input type="button" value="Upgrade" onclick="UPGRADE();"/>
</body>
</html>
Are you sure you have a \ at the very end of every line? It is quite common to get a space after a \ which causes problems. Make sure you go down each line and check for rogue spaces.
char text[] = "Twas brillig and the slithy toves"Â /* all one string */
       "Did gyre and gimbal in the wabe"
       "All mimsy were the borogroves"
       "And the mome raths outgrabe";
But the maximum length may vary from compiler to compiler.
Yes Morris, I remember something like that.
It's close to what I saw few days ago somewhere in the net (unfortunately you see things when you don't need them :~ )