Warnings using format strings with sprintf() in C++ - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T12:10:26Zhttp://stackoverflow.com/feeds/question/338400http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/338400/warnings-using-format-strings-with-sprintf-in-c0Warnings using format strings with sprintf() in C++Emilio2008-12-03T19:18:30Z2009-01-27T07:04:22Z
<p>Compiling this lines</p>
<pre><code> long int sz;
char tmpret[128];
//take substring of c, translate in c string, convert to int,
//and multiply with 1024
sz=atoi(c.substr(0,pos).c_str())*1024;
snprintf(tmpret,128,"%l",sz);
</code></pre>
<p>I read two warning on snprintf line:</p>
<pre><code> warning: conversion lacks type at end of format
warning: too many arguments for format
</code></pre>
<p>Why? The type is specified (long int sz, and %l in snprintf) and the argument in snprintf is only one. Can anybody help me? Thanks.</p>
http://stackoverflow.com/questions/338400/warnings-using-format-strings-with-sprintf-in-c/338418#3384187Answer by Dmitry Khalatov for Warnings using format strings with sprintf() in C++Dmitry Khalatov2008-12-03T19:23:07Z2008-12-03T19:23:07Z<p>Your format lacks type, because l is a "sizeof" modifier. Should be %ld </p>
http://stackoverflow.com/questions/338400/warnings-using-format-strings-with-sprintf-in-c/338435#3384350Answer by Rob Walker for Warnings using format strings with sprintf() in C++Rob Walker2008-12-03T19:31:38Z2008-12-03T19:31:38Z<p>See this list of <a href="http://www.cplusplus.com/reference/clibrary/cstdio/printf.html" rel="nofollow">printf format specifiers</a></p>
<p>It's comment for %l is:</p>
<blockquote>
<p>The argument is interpreted as a long
int or unsigned long int for integer
specifiers (i, d, o, u, x and X), and
as a wide character or wide character
string for specifiers c and s.</p>
</blockquote>
http://stackoverflow.com/questions/338400/warnings-using-format-strings-with-sprintf-in-c/338437#3384371Answer by Matt Cruikshank for Warnings using format strings with sprintf() in C++Matt Cruikshank2008-12-03T19:32:21Z2008-12-03T19:32:21Z<p><code>boost::lexical_cast<string>(sz)</code> is much nicer, anyway.</p>
http://stackoverflow.com/questions/338400/warnings-using-format-strings-with-sprintf-in-c/482521#4825210Answer by DILIP for Warnings using format strings with sprintf() in C++DILIP2009-01-27T07:04:22Z2009-01-27T07:04:22Z<p>Hi,</p>
<p>int sprintf ( char * str, const char * format, ... );</p>
<p>It does not require the length of "str", as the second argument.
The name of the string pointer/ array name is enough.</p>