<html><body>
<p>Hello,<br>
<br>
When I execute a program from Scipad with a printf with a format string with accents, conversion codes after the first accent are ignored. For instance, a program with the code<br>
<br>
<font face="Courier New">n = 5;</font><br>
<font face="Courier New">printf("\n%d! est égal à %d",n,factorial(n))</font><br>
<font face="Courier New">printf("\n%d! est egal à %d",n,factorial(n))</font><br>
<font face="Courier New">printf("\n%d! est egal a %d",n,factorial(n))</font><br>
<br>
produces<br>
<br>
<font face="Courier New">5! est égal à %d</font><br>
<font face="Courier New">5! est egal à %d</font><br>
<font face="Courier New">5! est egal a 120</font><br>
<br>
while, from the console, the same statement produces a correct output::<br>
<br>
-->printf("\n%d! est égal à %d",n,factorial(n))<br>
<br>
5! est égal à 120 <br>
<br>
Are there any restrictions on the use of accents on printf?<br>
<br>
Thanks,<br>
<br>
Osvaldo</body></html>