
{"id":8057,"date":"2013-01-13T18:14:01","date_gmt":"2013-01-13T18:14:01","guid":{"rendered":"http:\/\/www.beautifulwork.org\/?p=8057"},"modified":"2013-01-13T18:14:01","modified_gmt":"2013-01-13T18:14:01","slug":"gcc-commandline-options-part-1","status":"publish","type":"post","link":"https:\/\/www.trueangle.org\/index.php\/2013\/01\/13\/gcc-commandline-options-part-1\/","title":{"rendered":"GCC COMMANDLINE OPTIONS  PART 1"},"content":{"rendered":"<h4><u>commandline session<\/u><\/h4>\n<pre>\n$cat main.c\n#include&lt;stdio.h&gt;\n\nint main(void)\n{\nprintf(\"n The Geek Stuffn\");\nreturn 0;\n}\n$gcc main.c\n$.\/a.out\n\nThe Geek Stuff\n$gcc main.c -o main\n$.\/main\n\nThe Geek Stuff\n$gcc -Wall main.c -o main\n$.\/main\n\nThe Geek Stuff\n$cat main.c\n#include&lt;stdio.h&gt;\n\nint main(void)\n{\nint i;\nprintf(\"n The Geek Stuff [%d]n\", i);\nreturn 0;\n}\n$gcc -Wall main.c -o main\nmain.c: In function \u2018main\u2019:\nmain.c:6:10: warning: \u2018i\u2019 is used uninitialized in this function [-Wuninitialized]\n$gcc -E main.c &gt; main.i\n\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>commandline session $cat main.c #include&lt;stdio.h&gt; int main(void) { printf(&#8220;n The Geek Stuffn&#8221;); return 0; } $gcc main.c $.\/a.out The Geek Stuff $gcc main.c -o main $.\/main The Geek Stuff $gcc -Wall main.c -o main $.\/main The Geek Stuff $cat main.c #include&lt;stdio.h&gt; int main(void) { int i; printf(&#8220;n The Geek Stuff [%d]n&#8221;, i); return 0; } &hellip; <\/p>\n<p class=\"link-more\"><a href=\"https:\/\/www.trueangle.org\/index.php\/2013\/01\/13\/gcc-commandline-options-part-1\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;GCC COMMANDLINE OPTIONS  PART 1&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[1],"tags":[],"_links":{"self":[{"href":"https:\/\/www.trueangle.org\/index.php\/wp-json\/wp\/v2\/posts\/8057"}],"collection":[{"href":"https:\/\/www.trueangle.org\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.trueangle.org\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.trueangle.org\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.trueangle.org\/index.php\/wp-json\/wp\/v2\/comments?post=8057"}],"version-history":[{"count":0,"href":"https:\/\/www.trueangle.org\/index.php\/wp-json\/wp\/v2\/posts\/8057\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.trueangle.org\/index.php\/wp-json\/wp\/v2\/media?parent=8057"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.trueangle.org\/index.php\/wp-json\/wp\/v2\/categories?post=8057"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.trueangle.org\/index.php\/wp-json\/wp\/v2\/tags?post=8057"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}