Warnings using format strings with sprintf() in C++ - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T12:10:26Z http://stackoverflow.com/feeds/question/338400 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/338400/warnings-using-format-strings-with-sprintf-in-c 0 Warnings using format strings with sprintf() in C++ Emilio 2008-12-03T19:18:30Z 2009-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#338418 7 Answer by Dmitry Khalatov for Warnings using format strings with sprintf() in C++ Dmitry Khalatov 2008-12-03T19:23:07Z 2008-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#338435 0 Answer by Rob Walker for Warnings using format strings with sprintf() in C++ Rob Walker 2008-12-03T19:31:38Z 2008-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#338437 1 Answer by Matt Cruikshank for Warnings using format strings with sprintf() in C++ Matt Cruikshank 2008-12-03T19:32:21Z 2008-12-03T19:32:21Z <p><code>boost::lexical_cast&lt;string&gt;(sz)</code> is much nicer, anyway.</p> http://stackoverflow.com/questions/338400/warnings-using-format-strings-with-sprintf-in-c/482521#482521 0 Answer by DILIP for Warnings using format strings with sprintf() in C++ DILIP 2009-01-27T07:04:22Z 2009-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>