User jeremy Ruten - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T17:52:24Z http://stackoverflow.com/feeds/user/813 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1811796/php-mysql-sanitizing-user-input-is-this-a-bad-idea/1811824#1811824 3 Answer by jeremy Ruten for PHP / MYSQL: Sanitizing user input - is this a bad idea? jeremy Ruten 2009-11-28T06:55:25Z 2009-11-28T06:55:25Z <p>If you have arrays in your <code>$_REQUEST</code> their values won't be sanitized.</p> http://stackoverflow.com/questions/1800377/is-it-bad-practice-to-change-state-inside-of-an-if-statement/1800407#1800407 1 Answer by jeremy Ruten for Is it bad practice to change state inside of an if statement? jeremy Ruten 2009-11-25T22:36:16Z 2009-11-25T22:36:16Z <p>The only thing wrong with it is that it's unfamiliar and confusing to people who didn't write it, at least for a minute while they figure it out. I would probably write it like this to make it more readable:</p> <pre><code>if (list.length &gt;= 1 &amp;&amp; list[0].equals(SKIP_FIRST)) { return 1; } if (list.length &gt;= 2 &amp;&amp; (list[0] + "/" + list[1]).equals(SKIP_SECOND)) { return 2; } </code></pre> http://stackoverflow.com/questions/1745922/regex-for-timestamps-in-php/1745966#1745966 1 Answer by jeremy Ruten for Regex for timestamps in php jeremy Ruten 2009-11-17T01:03:09Z 2009-11-17T01:03:09Z <p>You could use <a href="http://php.net/explode" rel="nofollow"><code>explode()</code></a>:</p> <pre><code>list($date) = explode('T', '2009-11-16T14:05:22-08:00'); </code></pre> <p><code>$date</code> would now be <code>'2009-11-16'</code>.</p> http://stackoverflow.com/questions/1745389/checking-querystring-values-in-php/1745402#1745402 5 Answer by jeremy Ruten for Checking querystring values in PHP jeremy Ruten 2009-11-16T22:56:57Z 2009-11-16T23:03:09Z <p>Use <a href="http://php.net/isset" rel="nofollow"><code>isset()</code></a>:</p> <pre><code>if (isset($_GET['name'])) { // your above code } else { // display form } </code></pre> http://stackoverflow.com/questions/1739522/how-to-add-an-all-rule-to-this-makefile/1739540#1739540 2 Answer by jeremy Ruten for How to add an all rule to this Makefile? jeremy Ruten 2009-11-16T00:54:12Z 2009-11-16T00:54:12Z <p>What all is it supposed to do? If you just want it to build <code>calcu</code>, all you have to do is type <code>make</code> and it will make it along with everything it depends on, because it is the first rule in the file.</p> <p>If you still want to make an <code>all</code> rule, it can be done like this. I recommend putting this above all other rules, so that you can just type <code>make</code> instead of <code>make all</code>.</p> <pre><code>all: calcu </code></pre> http://stackoverflow.com/questions/1739434/whats-wrong-with-this-makefile/1739456#1739456 5 Answer by jeremy Ruten for What's wrong with this Makefile? jeremy Ruten 2009-11-16T00:27:27Z 2009-11-16T00:27:27Z <p>You need to indent like so. (Note: they changed my tabs into a 4space. Make sure to indent with the tab character.)</p> <pre><code>LEX = lex YACC = yacc CC = gcc calcu: y.tab.o lex.yy.o $(CC) -o calcu y.tab.o lex.yy.o -ly -lfl y.tab.c y.tab.h: parser.y $(YACC) -d parser.y y.tab.o: y.tab.c parser.h $(CC) -c y.tab.c lex.yy.o: y.tab.h lex.yy.c $(CC) -c lex.yy.c lex.yy.c: calclexer.l parser.h $(LEX) calclexer.l clean: rm *.o rm *.c rm calcu </code></pre> <p>The extra blank lines aren't required but the indenting is. You'll also need to make an <code>all</code> rule if you want to <code>make all</code>.</p> http://stackoverflow.com/questions/1735925/php-regex-not-new-line/1735935#1735935 7 Answer by jeremy Ruten for PHP regex not new line jeremy Ruten 2009-11-14T23:10:48Z 2009-11-14T23:10:48Z <p>The dot <code>.</code> does not match newlines unless you use the <code>s</code> modifier.</p> <pre><code>&gt;&gt;&gt; preg_match("/./", "\n") 0 &gt;&gt;&gt; preg_match("/./s", "\n") 1 </code></pre> http://stackoverflow.com/questions/1733464/what-does-this-mean-exactly-sessionsessionname-itemrowname/1733491#1733491 3 Answer by jeremy Ruten for What does this mean exactly? $_SESSION['sessionName '][$item['rowName ']] jeremy Ruten 2009-11-14T06:27:35Z 2009-11-14T06:27:35Z <p><code>$_SESSION</code> is a superglobal that stores session data in an associative array, see <a href="http://php.net/session" rel="nofollow">http://php.net/session</a>.</p> <p>In your example, the value at <code>$_SESSION['sessionName']</code> is apparently an array itself, which is indexed into with the value of <code>$item['rowName']</code> which smells like a string.</p> <p>To simplify the expression, you could define these variables:</p> <pre><code>$sessionName = $_SESSION['sessionName']; $rowName = $item['rowName']; </code></pre> <p>And then we could say that your example code is equivalent to</p> <pre><code>$sessionName[$rowName] </code></pre> http://stackoverflow.com/questions/1732853/inarray-not-working/1732902#1732902 6 Answer by jeremy Ruten for in_array() not working jeremy Ruten 2009-11-14T01:21:14Z 2009-11-14T01:41:49Z <p>If your file uses Windows linebreaks (lines end in <code>\r\n</code>), you'll get an invisible <code>\r</code> character at the end of each of your strings. Test for it by running strlen() on one of them:</p> <pre><code>echo $array[0] . ': ' . strlen($array[0]) . ' chars'; </code></pre> <p>If you get something like</p> <pre><code>12345: 6 chars </code></pre> <p>You know that's the problem! You can get rid of these characters after exploding the array using <a href="http://php.net/array%5Fmap" rel="nofollow"><code>array_map()</code></a> with <a href="http://php.net/trim" rel="nofollow"><code>trim()</code></a>:</p> <pre><code>$array = array_map('trim', $array); </code></pre> http://stackoverflow.com/questions/1719830/is-this-code-redundant-when-checking-for-a-value-greater-than-zero/1719861#1719861 1 Answer by jeremy Ruten for Is this code redundant when checking for a value greater than zero? jeremy Ruten 2009-11-12T04:21:24Z 2009-11-12T04:21:24Z <pre><code>&gt;&gt;&gt; $foo = NULL &gt;&gt;&gt; $foo != 0 false &gt;&gt;&gt; $foo == 0 true </code></pre> <p>PHP treats variables with a <code>NULL</code> value as the integer <code>0</code> with the <code>==</code> operator so the <code>NULL</code> check is indeed redundant.</p> http://stackoverflow.com/questions/1712031/haskell-chaining-filters/1712054#1712054 4 Answer by jeremy Ruten for haskell, chaining filters jeremy Ruten 2009-11-10T23:43:40Z 2009-11-10T23:43:40Z <p>If you defined a function <code>both</code> that looked like this:</p> <pre><code>both :: (a -&gt; Bool) -&gt; (a -&gt; Bool) -&gt; a -&gt; Bool both f g x = f x &amp;&amp; g x </code></pre> <p>Then you could write:</p> <pre><code>example xs = filter (both p q) xs </code></pre> <p>I'm not sure if there's a standard function that does this for you...</p> http://stackoverflow.com/questions/1699342/what-does-the-brackets-mean-in-python-tablerposi/1699360#1699360 1 Answer by jeremy Ruten for What does the brackets mean in python: table[r][pos+i]? jeremy Ruten 2009-11-09T06:16:17Z 2009-11-09T06:16:17Z <p>It means that the value of <code>table[r]</code> is <em>another</em> array (an array within an array), which you are indexing into with <code>[pos+i]</code>. So it's the equivalent of:</p> <pre><code>foo = table[r] if foo[pos+i] != word[i]: </code></pre> http://stackoverflow.com/questions/1698672/preventing-php-code-from-being-pirated/1698695#1698695 -1 Answer by jeremy Ruten for Preventing PHP Code from being Pirated jeremy Ruten 2009-11-09T01:37:29Z 2009-11-09T01:37:29Z <p>You could release the code for free.</p> http://stackoverflow.com/questions/1698524/c-return-and-comparation-inline/1698548#1698548 2 Answer by jeremy Ruten for C return and comparation inline jeremy Ruten 2009-11-09T00:47:57Z 2009-11-09T00:47:57Z <p>It takes an array of three <code>EXPRESSION</code>s and evaluates the first one. If the first one evaluates to a true value, it evaluates the second expression and returns its value. Otherwise it evaluates the third expression and returns its value.</p> http://stackoverflow.com/questions/1698318/ruby-generate-a-random-hex-color/1698364#1698364 8 Answer by jeremy Ruten for Ruby, Generate a random hex color jeremy Ruten 2009-11-08T23:40:14Z 2009-11-08T23:40:14Z <p>Here's one way:</p> <pre><code>colour = "%06x" % (rand * 0xffffff) </code></pre> http://stackoverflow.com/questions/1698008/can-php-return-a-boolean-return-aantal-0/1698023#1698023 6 Answer by jeremy Ruten for can php return a boolean? => return $aantal == 0; jeremy Ruten 2009-11-08T21:46:13Z 2009-11-08T21:46:13Z <p>Try it out!</p> <pre><code>function is_zero($n) { return $n == 0; } echo gettype(is_zero(0)); </code></pre> <p>The output:</p> <pre><code>boolean </code></pre> http://stackoverflow.com/questions/1695448/how-can-i-set-variables-in-ruby-with-an-if-statement-on-one-line/1695465#1695465 4 Answer by jeremy Ruten for How can I set variables in Ruby with an if statement on one line? jeremy Ruten 2009-11-08T05:26:40Z 2009-11-08T05:26:40Z <p>You could use the <code>&amp;&amp;</code> operator:</p> <pre><code>dog_name = params[:dog] &amp;&amp; params[:dog][:name] </code></pre> <p>So now <code>dog_name</code> will be <code>nil</code> if <code>params[:dog]</code> does not exist, else it will be the value of <code>params[:dog][:name]</code>.</p> http://stackoverflow.com/questions/1664362/access-an-array-returned-by-a-function/1664381#1664381 1 Answer by jeremy Ruten for Access an Array Returned by a Function jeremy Ruten 2009-11-02T23:30:42Z 2009-11-02T23:30:42Z <p>Not really. You could define a function to do it, though:</p> <pre><code>function array_value($array, $key) { return $array[$key]; } // and then echo array_value(getData($id), 'name'); </code></pre> <p>The only other way, which probably won't help you much in this case, is to use <code>list()</code> which will get you the first <code>n</code> items in the returned array. You have to know the order of the items in the list beforehand, though:</p> <pre><code>function test() { return array(1, 2, 3, 4); } list($one, $two, $three) = test(); // now $one is 1, $two is 2, $three is 3 </code></pre> http://stackoverflow.com/questions/404231/using-an-enum-as-an-array-index 3 Using an enum as an array index jeremy Ruten 2008-12-31T23:02:54Z 2009-10-28T10:41:35Z <p>I have this enum:</p> <pre><code>enum ButtonState { BUTTON_NORMAL = 0, BUTTON_PRESSED = 1, BUTTON_CLICKED = 2 }; const u8 NUM_BUTTON_STATES = 3; </code></pre> <p>In my Button class I have member variables <code>ButtonState state;</code> and <code>ButtonColors colors[NUM_BUTTON_STATES];</code>. When drawing the button, I use <code>colors[state]</code> to get the colours for whatever state the button is in.</p> <p>My questions:</p> <ol> <li>Is this good programming style? Is there a better way to do it? (I usually only use enums with switch statements... using an enum as an array index doesn't feel right.)</li> <li>Do I <em>have</em> to specify the values of the enum? It seems to start from 0 by default and increment by 1 but is it guaranteed to work that way in all compilers?</li> </ol> http://stackoverflow.com/questions/1617157/how-to-get-the-first-item-from-an-associative-php-array/1617177#1617177 3 Answer by jeremy Ruten for How to get the first item from an associative PHP array? jeremy Ruten 2009-10-24T06:28:22Z 2009-10-24T06:28:22Z <p>There's a few options. <a href="http://php.net/array%5Fshift" rel="nofollow"><code>array_shift()</code></a> will return the first element, but it will also remove the first element from the array.</p> <pre><code>$first = array_shift($array); </code></pre> <p><a href="http://php.net/current" rel="nofollow"><code>current()</code></a> will return the value of the array that its internal memory pointer is pointing to, which is the first element by default.</p> <pre><code>$first = current($array); </code></pre> <p>If you want to make sure that it is pointing to the first element, you can always use <a href="http://php.net/reset" rel="nofollow"><code>reset()</code></a>.</p> <pre><code>reset($array); $first = current($array); </code></pre> http://stackoverflow.com/questions/1616646/php-only-allowing-certain-characters-in-string/1616657#1616657 1 Answer by jeremy Ruten for [PHP] Only allowing certain characters in string jeremy Ruten 2009-10-24T01:06:08Z 2009-10-24T01:06:08Z <p>Use a regex. Use <a href="http://php.net/preg%5Fmatch" rel="nofollow">preg_match()</a>.</p> <pre><code>$matches = preg_match('/[^a-z0-9]/', $string); </code></pre> <p>So now if <code>$matches</code> has <code>1</code>, you know the <code>$string</code> contains bad characters. Otherwise <code>$matches</code> is <code>0</code>, and the <code>$string</code> is OK.</p> http://stackoverflow.com/questions/1615271/what-does-the-syntax-mean-in-this-ruby-example/1615293#1615293 7 Answer by jeremy Ruten for What does the syntax ?. mean in this Ruby example? jeremy Ruten 2009-10-23T18:54:15Z 2009-10-23T18:54:15Z <p><code>?.</code> returns the ASCII value of the dot. You can put pretty much any char after the question mark to get its ASCII value, like <code>?a</code> or <code>?3</code> or <code>?\\</code>, etc. The reason they are not comparing it to the string <code>"."</code> is that when you index into a string, you get the ASCII value of the char at that index rather than the char itself. To get the char at a certain index you can use <code>[0, 1]</code> as the index. So the options are:</p> <pre><code>if File.basename(path)[0] == ?. </code></pre> <p>Or:</p> <pre><code>if File.basename(path)[0, 1] == "." </code></pre> <p>Or even:</p> <pre><code>if File.basename(path)[0].chr == "." </code></pre> http://stackoverflow.com/questions/1609702/code-golf-playing-cubes/1611500#1611500 1 Answer by jeremy Ruten for Code Golf: Playing Cubes jeremy Ruten 2009-10-23T05:19:07Z 2009-10-23T05:29:20Z <p><strong>313 bytes of Ruby</strong></p> <pre><code>c=gets.split.map{|n|n.to_i}+[0];l=[" "*(c.length*5)]*((c.max-c.min)*2+2) c.each_index{|i|h=c[i];h==0&amp;&amp;next (h&lt;0?(h...0):(0...h)).to_a.each{|b|y=c.max*2+1-b*2;x=i*4;s=(x+7)..-1 4.times{|a|l[y-a]=l[y-a][0,x+[0,0,1,3][a]]+['|___|/','| | |','/__ /|','__' ][a]+(l[y-a][[(x+6)..-1,s,s,s][a]]||'')}}};l.each{|e|puts e} </code></pre> <p>(There is one newline that doesn't count, it's only there because otherwise there would be a very long line in there.)</p> <p>I used the obvious method of making a 2D array of characters and pasting in the cubes one at a time, bottom to top and left to right.</p> http://stackoverflow.com/questions/1604479/how-to-sort-an-array-in-this-way-in-php/1604504#1604504 1 Answer by jeremy Ruten for How to sort an array in this way in php jeremy Ruten 2009-10-22T01:07:03Z 2009-10-22T01:07:03Z <p>Your example doesn't make sense. You can't have two equal keys in the same array. If you want to sort the array's values and have their keys preserved, use <a href="http://php.net/asort" rel="nofollow"><code>asort()</code></a>. Or any of the functions in the table at <a href="http://ca.php.net/manual/en/array.sorting.php" rel="nofollow">http://ca.php.net/manual/en/array.sorting.php</a> that say "yes" under "Maintains key association".</p> http://stackoverflow.com/questions/1604446/adding-a-key-value-to-all-arrays-within-an-array/1604456#1604456 1 Answer by jeremy Ruten for Adding a key & value to all arrays within an array jeremy Ruten 2009-10-22T00:48:24Z 2009-10-22T00:48:24Z <p>I don't think a better way exists. A foreach loop isn't a bad way to do it. Short and simple:</p> <pre><code>foreach ($arr as &amp;$val) { $val['width'] = 400; } </code></pre> http://stackoverflow.com/questions/1585835/inserting-php-array-data-into-mysql-isnt-working/1585846#1585846 0 Answer by jeremy Ruten for Inserting php array data into mysql isn't working jeremy Ruten 2009-10-18T19:47:30Z 2009-10-18T19:47:30Z <p>Try running the query like this:</p> <pre><code>mysql_query($query) or die(mysql_error()); </code></pre> <p>This will give you a better idea of what you're doing wrong if there's a problem with your query. You may also want to print your SQL for debugging:</p> <pre><code>echo "Query $i: $query&lt;br /&gt;" </code></pre> http://stackoverflow.com/questions/1575096/code-golf-musical-notes/1575489#1575489 10 Answer by jeremy Ruten for Code Golf: Musical Notes jeremy Ruten 2009-10-15T22:28:37Z 2009-10-18T07:09:37Z <p><strong>159 Ruby chars</strong></p> <pre><code>n=gets.split;9.downto(0){|p|m='- '[p%2,1];n.each{|t|r=(t[0]-62)%7;g=t[2..-1] print m+(r==p ?'O'+m*2:p&gt;=r&amp;&amp;g&amp;&amp;p&lt;r+4?m+'|'+(g.to_i&gt;1&lt;&lt;-p+r+5?'\\':m):m*3)} puts} </code></pre> http://stackoverflow.com/questions/1546555/php-i-cant-trim-off-the-last-character-which-is-a-space/1546564#1546564 3 Answer by jeremy Ruten for PHP - I can't trim off the last character which is a space jeremy Ruten 2009-10-09T23:41:12Z 2009-10-09T23:41:12Z <p>Use <a href="http://php.net/trim" rel="nofollow"><code>trim()</code></a>, or <a href="http://php.net/rtrim" rel="nofollow"><code>rtrim()</code></a>, or <a href="http://php.net/ltrim" rel="nofollow"><code>ltrim()</code></a>.</p> http://stackoverflow.com/questions/1523283/c-strcmp-array/1523291#1523291 3 Answer by jeremy Ruten for C++ strcmp array jeremy Ruten 2009-10-06T02:10:22Z 2009-10-06T02:10:22Z <p>From what I can tell, you aren't comparing two strings as they aren't null-terminated. You may want to use <code>memcmp()</code> instead:</p> <pre><code>if (memcmp(blk_receive_opcode, opcode_data, 2) == 0) { } </code></pre> http://stackoverflow.com/questions/1515740/hot-to-update-mysqlfetcharray/1515745#1515745 2 Answer by jeremy Ruten for Hot to update mysql_fetch_array jeremy Ruten 2009-10-04T06:26:57Z 2009-10-04T06:26:57Z <p><code>$row[0]</code> is in fact valid in double-quoted strings. I think your problem is a misspelling: first you assign <code>$rez2</code> a value and then in the query you use <code>$res2</code>.</p> http://stackoverflow.com/questions/1745922/regex-for-timestamps-in-php/1745930#1745930 Comment by jeremy Ruten on Regex for timestamps in php jeremy Ruten 2009-11-17T01:10:46Z 2009-11-17T01:10:46Z one-digit months and days will probably have leading zeros, like the '05' in '14:05:22' in your example. http://stackoverflow.com/questions/1739564/whats-wrong-with-this-yacc-file Comment by jeremy Ruten on What's wrong with this yacc file? jeremy Ruten 2009-11-16T01:25:15Z 2009-11-16T01:25:15Z @RageZ haha, I can't help much on this one :[ http://stackoverflow.com/questions/1739522/how-to-add-an-all-rule-to-this-makefile Comment by jeremy Ruten on How to add an all rule to this Makefile? jeremy Ruten 2009-11-16T00:51:28Z 2009-11-16T00:51:28Z I saw this coming :) http://stackoverflow.com/questions/1733464/what-does-this-mean-exactly-sessionsessionname-itemrowname/1733491#1733491 Comment by jeremy Ruten on What does this mean exactly? $_SESSION['sessionName '][$item['rowName ']] jeremy Ruten 2009-11-14T07:02:45Z 2009-11-14T07:02:45Z Yes, hashtable sounds about right. All PHP arrays are &quot;associative arrays&quot;, which I believe is a synonym for &quot;hash tables&quot;. They have keys, which can be integers or strings, and map each key to a value. You may want to read <a href="http://php.net/array" rel="nofollow">php.net/array</a> http://stackoverflow.com/questions/1732853/inarray-not-working/1732868#1732868 Comment by jeremy Ruten on in_array() not working jeremy Ruten 2009-11-14T01:15:35Z 2009-11-14T01:15:35Z in_array() only gives you bools. either true or false, every time. <a href="http://php.net/in_array" rel="nofollow">php.net/in_array</a> http://stackoverflow.com/questions/1719830/is-this-code-redundant-when-checking-for-a-value-greater-than-zero Comment by jeremy Ruten on Is this code redundant when checking for a value greater than zero? jeremy Ruten 2009-11-12T04:44:08Z 2009-11-12T04:44:08Z Is there a <code>$slcustom47</code>? http://stackoverflow.com/questions/1698672/preventing-php-code-from-being-pirated/1698695#1698695 Comment by jeremy Ruten on Preventing PHP Code from being Pirated jeremy Ruten 2009-11-09T02:28:24Z 2009-11-09T02:28:24Z ok he edited his profile, sorry waiwai. http://stackoverflow.com/questions/1698672/preventing-php-code-from-being-pirated/1698695#1698695 Comment by jeremy Ruten on Preventing PHP Code from being Pirated jeremy Ruten 2009-11-09T02:14:02Z 2009-11-09T02:14:02Z pay for his what?? <a href="http://stackoverflow.com/users/89334/waiwai933" rel="nofollow">stackoverflow.com/users/89334/waiwai933</a> http://stackoverflow.com/questions/1604543/closable-or-closeable/1604548#1604548 Comment by jeremy Ruten on Closable or Closeable? jeremy Ruten 2009-10-22T01:27:25Z 2009-10-22T01:27:25Z also this: <a href="http://google.com/search?q=closeable" rel="nofollow">google.com/search?q=closeable</a> http://stackoverflow.com/questions/1602836/comparing-5-integers-in-least-number-of-comparisons/1602862#1602862 Comment by jeremy Ruten on Comparing 5 Integers in least number of comparisons jeremy Ruten 2009-10-21T18:57:53Z 2009-10-21T18:57:53Z right, thankyou. :P http://stackoverflow.com/questions/1575096/code-golf-musical-notes/1575489#1575489 Comment by jeremy Ruten on Code Golf: Musical Notes jeremy Ruten 2009-10-18T05:19:37Z 2009-10-18T05:19:37Z yes I did just notice that. And got it down to 182 chars while I was at it :P http://stackoverflow.com/questions/1583964/convert-every-letter-from-a-paragraph-string-to-lowercase-before-storing-it-bac/1583984#1583984 Comment by jeremy Ruten on Convert every letter from a paragraph (string) to lowercase before storing it back to the string (C Programming) jeremy Ruten 2009-10-18T04:14:59Z 2009-10-18T04:14:59Z you could write it as <code>for(i = 0; article[i] != '\0'; i++)</code> http://stackoverflow.com/questions/1583964/convert-every-letter-from-a-paragraph-string-to-lowercase-before-storing-it-bac/1583969#1583969 Comment by jeremy Ruten on Convert every letter from a paragraph (string) to lowercase before storing it back to the string (C Programming) jeremy Ruten 2009-10-18T04:11:15Z 2009-10-18T04:11:15Z you still need to dereference <code>c</code> in the for loop condition. http://stackoverflow.com/questions/1583964/convert-every-letter-from-a-paragraph-string-to-lowercase-before-storing-it-bac/1583976#1583976 Comment by jeremy Ruten on Convert every letter from a paragraph (string) to lowercase before storing it back to the string (C Programming) jeremy Ruten 2009-10-18T04:07:58Z 2009-10-18T04:07:58Z yes that could be the problem: the toLower definition (or its prototype) needs to go above the spellCheck definition. http://stackoverflow.com/questions/1583964/convert-every-letter-from-a-paragraph-string-to-lowercase-before-storing-it-bac Comment by jeremy Ruten on Convert every letter from a paragraph (string) to lowercase before storing it back to the string (C Programming) jeremy Ruten 2009-10-18T04:03:34Z 2009-10-18T04:03:34Z is that the whole program? You need a main() function.