active questions tagged printf - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T21:37:31Z http://stackoverflow.com/feeds/tag/printf http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1083142/whats-the-correct-way-to-use-printf-to-print-a-clockt 1 What’s the correct way to use printf to print a clock_t? Spidey 2009-07-04T23:05:55Z 2009-12-22T11:23:01Z <p>I'm currently using a explicit cast to unsigned long long and using %llu to print it, but since size_t has the %z specifier, why clock_t doesn't have one? There isn't even a macro for it. Maybe I can assume that on a x64 system (OS and CPU) size_t has 8 byte in length (and even in this case, they have provided %z), but what about clock_t?</p> http://stackoverflow.com/questions/1931850/why-doesnt-scanf-need-an-ampersand-for-strings-and-also-works-fine-in-printf-in 2 Why doesn't scanf need an ampersand for strings and also works fine in printf (in C)? AllWires 2009-12-19T03:27:15Z 2009-12-19T03:45:09Z <p>I am learning about strings in C now.</p> <p>How come to use scanf to get a string you can do </p> <pre><code>scanf("%s",str1); </code></pre> <p>and for printf you can do</p> <pre><code>printf("The string is %s\n", str1); </code></pre> <p>I understand that for scanf it is because the string is just a character array which is a pointer, but for printf, how is it that you can just put the variable name just like you would for an int or float?</p> http://stackoverflow.com/questions/1924530/mixing-cout-and-printf-for-faster-output 1 mixing cout and printf for faster output Jabba 2009-12-17T20:55:23Z 2009-12-18T19:52:02Z <p>After performing some tests I noticed that <code>printf</code> is much faster than <code>cout</code>. I know that it's implementation dependent, but on my Linux box <code>printf</code> is 8x faster. So my idea is to mix the two printing methods: I want to use <code>cout</code> for simple prints, and I plan to use <code>printf</code> for producing huge outputs (typically in a loop). I think it's safe to do as long as I don't forget to flush before switching to the other method:</p> <pre><code>cout &lt;&lt; "Hello" &lt;&lt; endl; cout.flush(); for (int i=0; i&lt;1000000; ++i) { printf("World!\n"); } fflush(stdout); cout &lt;&lt; "last line" &lt;&lt; endl; cout &lt;&lt; flush; </code></pre> <p>Is it OK like that?</p> <p><strong>Update:</strong> Thanks for all the precious feedbacks. Summary of the answers: if you want to avoid tricky solutions, just simply don't use <code>endl</code> with <code>cout</code> since it flushes the buffer implicitly. Use <code>"\n"</code> instead. It can be interesting if you produce <em>large</em> outputs.</p> http://stackoverflow.com/questions/1912437/formatting-the-output-using-c 0 formatting the output using c ashwanth 2009-12-16T05:10:17Z 2009-12-16T16:02:24Z <p>i have multiple outputs that i need to print as columns side by side. is there any way to achieve this using C? something like the output of ls -a i.e. i want to print the first column data, then the second and so on</p> http://stackoverflow.com/questions/1913735/problem-in-printing-floating-point 0 problem in printing floating point kudi 2009-12-16T10:28:28Z 2009-12-16T12:04:23Z <p>hi I am using IAR c compiler, I am trying to print floating point value like</p> <pre><code>printf("version number: %f\n",1.4); </code></pre> <p>but I am always getting like below in console</p> <pre><code>version number:ERROR </code></pre> <p>help please thanks in advance kudi</p> http://stackoverflow.com/questions/275338/java-print-a-2d-string-array-as-a-right-justified-table 1 Java: Print a 2D String array as a right-justified table Chris Conway 2008-11-08T22:53:56Z 2009-12-14T11:12:58Z <p>What is the <em>best</em> way to print the cells of a <code>String[][]</code> array as a right-justified table? For example, the input</p> <pre><code>{ { "x", "xxx" }, { "yyy", "y" }, { "zz", "zz" } } </code></pre> <p>should yield the output</p> <pre><code> x xxx yyy y zz zz </code></pre> <p>This seems like something that one <em>should</em> be able to accomplish using <code>java.util.Formatter</code>, but it doesn't seem to allow non-constant field widths. The best answer will use some standard method for padding the table cells, not the manual insertion of space characters.</p> http://stackoverflow.com/questions/1897227/problem-with-scanf-in-eclipse-minigw 0 Problem with scanf in Eclipse / MiniGW Tyler Brock 2009-12-13T18:15:33Z 2009-12-13T22:29:00Z <p>I'm trying to run the following code in eclipse but the console remains blank until i stop the program at which point the output "Enter next value (&lt;=0 to quit)2130567168 minutes is 35509452 hours, 48 minutes." is repeated over and over.</p> <p>It seems that scanf is putting some default value in for some reason... can't figure out why. I'm not seeing anything before the program is stopped so i thought it might have to do with printf not being flushed, but I made sure to use \n to force a flush.</p> <p>Any ideas?</p> <pre><code>#include &lt;stdio.h&gt; const int MIN_PER_HOUR = 60; // minutes per hour int main(void) { int hour, min, left; printf("Convert minutes to hours and minutes!\n"); printf("Enter the number of minutes (&lt;=0 to Quit):\n"); scanf("%d", &amp;min); // read number of minutes while(min &gt; 0){ hour = min / MIN_PER_HOUR; // truncated number of hours left = min % MIN_PER_HOUR; // number of minutes left over printf("%d minutes is %d hours, %d minutes.\n", min, hour, left); printf("Enter next value (&lt;=0 to quit)"); scanf("%d", &amp;min); } printf("Done!\n"); return 0; } </code></pre> http://stackoverflow.com/questions/1893967/roundtripping-double-to-text-and-back 0 Roundtripping double to text and back Eyal Redler 2009-12-12T16:48:15Z 2009-12-12T20:00:57Z <p>Using Cocoa or basic c, how can I convert a double to a string representation and then convert it back to the exact same double. Readability is not important, only accuracy. For example, will this work:<br> double a,b;<br> a=some value;<br> b=[[[NSNumber numberWithDouble:a] stringValue] doubleValue]; </p> http://stackoverflow.com/questions/1883345/whats-up-with-javas-n-in-printf 6 What's up with Java's "%n" in printf? ripper234 2009-12-10T19:24:22Z 2009-12-10T20:52:48Z <p>I'm reading Effective Java and it uses %n for the newline character everywhere. I have used \n rather successfully for newline in Java programs.</p> <p>Which is the 'correct' one? What's wrong with '\n' ? Why did Java change this C convention?</p> http://stackoverflow.com/questions/1868719/sigsegv-seemingly-caused-by-printf 0 SIGSEGV, (seemingly) caused by printf Glen 2009-12-08T17:56:48Z 2009-12-09T01:35:11Z <p>First and foremost, apologies for any cross-posting. Hope I'm not repeating an issue here, but I was unable to find this elsewhere (via Google and Stack Overflow).</p> <p>Here's the gist of the error. If I call <code>printf</code>, <code>sprintf</code> or <code>fprintf</code> anywhere within my code, to display a float, I get a <code>SIGSEGV (EXC_BAD_ACCESS)</code> error. Let me give an example.</p> <p>The following throws the error:</p> <pre><code>float f = 0.5f; printf("%f\n",f); </code></pre> <p>This code does not:</p> <pre><code>float f = 0.5f; printf("%d\n",f); </code></pre> <p>I realize there's an implicit conversion there, but I'm not concerned with that. I just can't fathom why printing a float vs. printing an integer would throw an error.</p> <p><strong>Note:</strong> Part of the code uses <code>malloc</code> to create some very large multidimensional arrays. However, these arrays are <strong>not</strong> being referenced in any way for these print statements. Here's an example how I'm declaring these arrays.</p> <pre><code>#define X_LEN 20 #define XDOT_LEN 20 #define THETA_LEN 20 #define THETADOT_LEN 20 #define NUM_STATES (X_LEN+1) * (XDOT_LEN+1) * (THETA_LEN+1) * (THETADOT_LEN+1) #define NUM_ACTS 100 float *states = (float *)malloc(NUM_STATES * sizeof(float)); // as opposed to float states[NUM_STATES] (more memory effecient) float **q = (float**)malloc(NUM_STATES * sizeof(float*)); for(int i=0; i &lt; NUM_STATES; i++) { float *a = (float*)malloc(NUM_ACTS * sizeof(float)); for(int j=0; j &lt; NUM_ACTS; j++) { a[j] = 0.0f; } q[i] = a; } </code></pre> <p>And then the above <code>printf</code> statements occur later in the code. </p> <p>The reason I included the <code>malloc</code> stuff is because from what I understand, <code>SIGSEGV</code> is related to poorly formed <code>malloc</code> calls. So, if the array initializations are what's causing the problem, I would like to know:</p> <ul> <li>why?</li> <li>how can I change the <code>malloc</code> code to solve this problem?</li> </ul> <p>I've included the crash log generated by OS X, just in case that helps anybody out.</p> <pre>Process: pole [5453] Path: {REDACTED} Identifier: pole Version: ??? (???) Code Type: X86-64 (Native) Parent Process: bash [5441] Date/Time: 2009-12-08 11:38:38.358 -0600 OS Version: Mac OS X 10.6.2 (10C540) Report Version: 6 Interval Since Last Report: 130074 sec Crashes Since Last Report: 68 Per-App Crashes Since Last Report: 63 Anonymous UUID: CA20CF15-8C46-4C85-A793-6C69F9F40140 Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Codes: KERN_INVALID_ADDRESS at 0x0000000100074f3b Crashed Thread: 0 Dispatch queue: com.apple.main-thread Thread 0 Crashed: Dispatch queue: com.apple.main-thread 0 libSystem.B.dylib 0x00007fff828d489e __Balloc_D2A + 164 1 libSystem.B.dylib 0x00007fff828d49b8 __d2b_D2A + 45 2 libSystem.B.dylib 0x00007fff828e8c74 __dtoa + 320 3 libSystem.B.dylib 0x00007fff828aa960 __vfprintf + 4980 4 libSystem.B.dylib 0x00007fff828ec7db vfprintf_l + 111 5 libSystem.B.dylib 0x00007fff828ec75e fprintf + 196 6 pole 0x00000001000028b5 Balance::sarsa() + 187 7 pole 0x0000000100002e54 main + 49 8 pole 0x00000001000010a8 start + 52 Thread 0 crashed with X86 Thread State (64-bit): rax: 0x0000000000000001 rbx: 0x000000010042cca0 rcx: 0x000000010042cca8 rdx: 0x0000000100074f3b rdi: 0x000000000000000e rsi: 0x00007fff5fbfecbc rbp: 0x00007fff5fbfeba0 rsp: 0x00007fff5fbfeb90 r8: 0x00007fff5fbff0b0 r9: 0x0000000000000000 r10: 0x00000000ffffffff r11: 0x000000010083a40b r12: 0x0000000000000001 r13: 0x00007fff5fbfecb8 r14: 0x00007fff5fbfecbc r15: 0x000000010000363e rip: 0x00007fff828d489e rfl: 0x0000000000010202 cr2: 0x0000000100074f3b Binary Images: 0x100000000 - 0x100003fff +pole ??? (???) {REDACTED} 0x7fff5fc00000 - 0x7fff5fc3bdef dyld 132.1 (???) /usr/lib/dyld 0x7fff81697000 - 0x7fff8169bff7 libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib 0x7fff8289c000 - 0x7fff82a5aff7 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib 0x7fff83c4c000 - 0x7fff83cc9fef libstdc++.6.dylib ??? (???) /usr/lib/libstdc++.6.dylib 0x7fffffe00000 - 0x7fffffe01fff libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib Model: MacBookPro4,1, BootROM MBP41.00C1.B03, 2 processors, Intel Core 2 Duo, 2.4 GHz, 2 GB, SMC 1.27f2 Graphics: NVIDIA GeForce 8600M GT, GeForce 8600M GT, PCIe, 256 MB Memory Module: global_name AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8C), Broadcom BCM43xx 1.0 (5.10.91.19) Bluetooth: Version 2.2.4f3, 2 service, 1 devices, 1 incoming serial ports Network Service: AirPort, AirPort, en1 Serial ATA Device: Hitachi HTS542520K9SA00, 186.31 GB Parallel ATA Device: MATSHITADVD-R UJ-867 USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8502, 0xfd400000 USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0230, 0x5d200000 USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x5d100000 USB Device: BRCM2046 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x1a100000 USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x820f, 0x1a110000</pre> <p>Thanks.</p> http://stackoverflow.com/questions/1855663/printf-seems-to-mess-the-output-of-a-simple-c-program 0 Printf seems to mess the output of a simple C program citronas 2009-12-06T15:18:44Z 2009-12-07T05:47:25Z <p>Hi there. I have some code to add fractions.</p> <pre><code>#include &lt;stdio.h&gt; #include &lt;stdlib.h&gt; struct frac { int enumerator; int denominator; }; typedef struct frac frac_t; frac_t *Add(frac_t *b1, frac_t *b2) { frac_t rfrac; frac_t *p; p = &amp;rfrac; (*p).enumerator= ((*b1).enumerator* (*b2).denominator) + ((*b2).enumerator* (*b1).denominator); (*p).denominator= ((*b1).denominator* (*b2).denominator); return p; } int main(void) { frac_t b1 = {2,4}; frac_t b2 = {1,7}; frac_t *add = Add(&amp;b1, &amp;b2); printf("%i %i\n", add-&gt;enumerator, add-&gt;denominator); system("pause"); return 0; } </code></pre> <p>This works perfectly fine. The result is: 3 5, as it is supposed to be.</p> <p>If I add a "printf" it totally messes up my result:</p> <pre><code>int main(void) { frac_t b1 = {2,4}; frac_t b2 = {1,7}; frac_t *add = Add(&amp;b1, &amp;b2); printf("addition:\n"); printf("%i %i\n", add-&gt;enumerator, add-&gt;denominator); system("pause"); return 0; } </code></pre> <p>The result is:</p> <p>addition:</p> <p>2008958704 -1</p> <p>What went wrong?</p> http://stackoverflow.com/questions/1846334/printf-modifying-a-string 1 printf modifying a string Beau Martínez 2009-12-04T11:17:53Z 2009-12-04T14:13:45Z <p>Using <code>printf</code> to print <code>"\4unix\5lancs\2ac\2uk\0"</code> I find, instead of a print in the form of <code>♦unix♣lancs☻ac☻uk</code>, I get garbage (<code>♫ ,►E¦§Qh ↕</code>).</p> <p>I cannot find an explanation for this; I use the following method to tokenise a string:</p> <pre><code>/** * Encode the passed string into a string as defined in the RFC. */ char * encodeString(char *string) { char stringCopy[128]; char encodedString[128] = ""; char *token; /* We copy the passed string as strtok mutates its argument. */ strcpy(stringCopy, string); /* We tokenise the string on periods. */ token = strtok(stringCopy, "."); while (token != NULL) { char encodedToken[128] = ""; /* Encode the token. */ encodedToken[0] = (char) strlen(token); strcat(encodedToken, token); /* Add the encodedString token to the encodedString string. */ strcat(encodedString, encodedToken); /* Prepare for the next iteration. */ token = strtok(NULL, "."); } /* A null character is appended already to the encoded string. */ return encodedString; } </code></pre> <p>And the following code in my driver to print the result when tokenising <code>"unix.lancs.ac.uk"</code>:</p> <pre><code>int main(int argc, char *argv[]) { char *foo = "unix.lancs.ac.uk"; char *bar = encodeString(foo); printf("%s\n", bar); return 0; } </code></pre> <p>If I add a <code>printf</code> to print <code>encodedString</code> at the end of the <code>encodeString</code> method, I don't get garbage printed out (rather, <code>♦unix♣lancs☻ac☻uk</code> twice).</p> <p>(Upon debugging I notice the actual memory contents is changed.)</p> <p>Can anyone explain this phenomenon to me?</p> http://stackoverflow.com/questions/1838388/how-to-format-printf-statement-better-so-things-always-line-up 1 How to format printf statement better so things always line up Phenom 2009-12-03T08:08:37Z 2009-12-03T08:19:07Z <p>I have this printf statement:</p> <pre><code> printf("name: %s\t" "args: %s\t" "value %d\t" "arraysize %d\t" "scope %d\n", sp-&gt;name, sp-&gt;args, sp-&gt;value, sp-&gt;arraysize, sp-&gt;scope); </code></pre> <p>It's inside a for loop, so it's printing multiple lines for a list of pointers. </p> <p>The problem is that if some of the things that are printed are longer or shorter, it causes things to not line up. How do I get it to always line up?</p> http://stackoverflow.com/questions/1836085/simple-formatting-question-in-java-using-printf 0 Simple formatting question in Java using printf Phil 2009-12-02T21:53:56Z 2009-12-02T22:35:03Z <p>I have an array of 12 numbers </p> <pre><code>int ary2[] = {3,5,9,11,15,18,22,23,30,31,35,39}; </code></pre> <p>I want to print the numbers out with 2 places for the number and a space between the numbers. </p> <p>Example print out would be :</p> <pre><code> 3 5 9 11 15 18 22 23 30 31 35 39 </code></pre> <p>This is how far I got. </p> <pre><code>for(int i = 0; i &lt; ary2.length; i++) { System.out.printf("%-3s", ary2[i]); } </code></pre> <p>I'm new at this. Although I won't be directly submitting this as homework, it is affiliated with a homework project of mine; therefore, i'll be using that homework tag anyways.</p> <p>EDIT: Answer Found.</p> http://stackoverflow.com/questions/1819250/odd-rounding-problem-using-the-ruby-printf-format-specifier 1 Odd rounding problem using the ruby printf-format-specifier tsdbrown 2009-11-30T11:23:25Z 2009-12-01T23:20:12Z <p>Has anybody got any ideas on this one? </p> <p>When we run:</p> <p><code>printf("%.0f", 40.5)</code> </p> <p>On a windows box the return is "41" but on our production ubuntu server we're getting "40"</p> http://stackoverflow.com/questions/1803670/how-do-you-print-two-places-exactly-using-zero-pad-flag-in-a-print-statement 0 How do you print two places exactly using zero-pad flag in a print statement daddycardona 2009-11-26T13:28:50Z 2009-11-26T13:48:20Z <p>if wanted to make a this method print using zero pad how do you do so</p> <pre><code>int month, day; public void printNumeric() { System.out.printf("month +"/" +day +" \n"); // i would like the month if it is 5 to be 05 same thing with the day } </code></pre> http://stackoverflow.com/questions/1779338/weird-result-printing-pointers-as-float-in-c 1 Weird result printing pointers as float in C Asker 2009-11-22T17:25:29Z 2009-11-22T18:31:17Z <p>I know this is <em>wrong</em> and gcc will give you a warning about it, but why does it work (i.e. the numbers are printed correctly, with some rounding difference)?</p> <pre><code>int main() { float *f = (float*) malloc(sizeof(float)); *f = 123.456; printf("%f\n", *f); printf("%f\n", f); return 0; } </code></pre> <p><strong>Edit:</strong> Yes, I'm using gcc with a 32-bit machine. I was curious to see what results I'd get with other compilers.</p> <p>I meddled with things a little more following Christoph's suggestion:</p> <pre><code>int main() { float *f = (float*) malloc(sizeof(float)); *f = 123.456; printf("%f\n", f); // this printf("%f\n", *f); printf("%f\n", f); // that return 0; } </code></pre> <p>This results in the first printf printing a value different from the last printf, despite being identical.</p> http://stackoverflow.com/questions/1772485/printf-and-hex-values 0 Printf and hex values Lanissum 2009-11-20T18:44:33Z 2009-11-20T18:46:54Z <p>So, I have a value of type __be16 (2 bytes). In hex, the value is represented as 0x0800 or 2048 in decimal. (16^2 * 8) </p> <p>So, when I printf this; I do this:</p> <pre><code>printf("%04X", value); //__be16 value; //Print a hex value of at least 4 characters, no padding. </code></pre> <p>output: 0008</p> <pre><code>printf("%i", value); //Print an integer. </code></pre> <p>output: 8</p> <p>I should be getting 0800 and 2048 respectively, what am I doing wrong?</p> http://stackoverflow.com/questions/1763184/string-formatting-expressions-python 2 String formatting expressions (Python) Nimbuz 2009-11-19T13:09:51Z 2009-11-19T16:09:41Z <p>String formatting expressions:</p> <pre><code>'This is %d %s example!' % (1, 'nice') </code></pre> <p>String formatting method calls:</p> <pre><code>'This is {0} {1} example!'.format(1, 'nice') </code></pre> <p>I personally prefer the method calls (second example) for readability but since it is new, there is some chance that one or the other of these may become deprecated over time. Which do you think is less likely to be deprecated?</p> http://stackoverflow.com/questions/840081/what-does-floating-point-error-1-j-mean 3 What does floating point error -1.#J mean? Srekel 2009-05-08T14:32:48Z 2009-11-18T12:17:33Z <p>Recently, sometimes (rarely) when we export data from our application, the export log contains float values that look like "-1.#J". I haven't been able to reproduce it so I don't know what the float looks like in binary, or how Visual Studio displays it.</p> <p>I tried looking at the source code for printf, but didn't find anything (not 100% sure I looked at the right version though...).</p> <p>I've tried googling but google throws away any #, it seems. And I can't find any lists of float errors.</p> http://stackoverflow.com/questions/890262/integer-ascii-value-to-character-in-bash-using-printf 0 Integer ASCII value to character in BASH using printf Kent 2009-05-20T21:07:56Z 2009-11-18T10:10:40Z <p>Character to value works:</p> <pre><code>$ printf "%d\n" \'A 65 $ </code></pre> <p>I have two questions, the first one is most important:</p> <ul> <li>How do I take 65 and turn it into A?</li> <li>\'A converts an ASCII character to its value using printf. Is the syntax <em>specific</em> to <em>printf</em> or is it used anywhere else in BASH? (Such small strings are hard to Google for.)</li> </ul> http://stackoverflow.com/questions/1752079/in-c-can-a-long-printf-statement-be-broken-up-into-multiple-lines 4 In C can a long printf statement be broken up into multiple lines? Phenom 2009-11-17T21:48:36Z 2009-11-18T08:24:22Z <p>I have the following statement:</p> <p>printf("name: %s\targs: %s\tvalue %d\tarraysize %d\n", sp->name, sp->args, sp->value, sp->arraysize);</p> <p>I want to break it up. I tried the following but it doesn't work.</p> <pre><code>printf("name: %s\t args: %s\t value %d\t arraysize %d\n", sp-&gt;name, sp-&gt;args, sp-&gt;value, sp-&gt;arraysize); </code></pre> <p>How can I break it up?</p> http://stackoverflow.com/questions/1748856/inconsistent-results-from-printf-with-long-long-int 0 Inconsistent results from printf with long long int? Sunny Shah 2009-11-17T13:26:08Z 2009-11-17T14:21:51Z <pre><code>struct DummyStruct{ unsigned long long std; int type; }; DummyStruct d; d.std = 100; d.type = 10; /// buggy printf, unsigned long long to int conversion is buggy. printf("%d,%d\n",d.std, d.type); // OUTPUT: 0,100 printf("%d,%d\n", d.type, d.std); // OUTPUT: 10,100 printf("%lld,%d\n",d.std, d.type); // OUTPUT: 100,10 </code></pre> <p>Please tell me why unsigned long long to int conversion is not properly handled in printf. I am using glibc.</p> <p>Is this bug in printf ? </p> <p><strong>why printf does not do internal type conversion ?</strong></p> http://stackoverflow.com/questions/1550758/call-c-function-from-assembly 0 Call C function from Assembly DavidH 2009-10-11T14:00:32Z 2009-11-15T22:02:58Z <p>Hello!</p> <p>I will work on a big Assembly project but now just started to learn this new language. I try to make some really simple examples like ones for c++ in highschool (sum two numbers, is a number prime, etc). Now I got to display all prime numbers up to n. The problem is that the application freezes at "call printf" and I have no idea why. Can you help me with this?</p> <p>Please find the code below</p> <pre><code>.section .data prime_number_str: .asciz "%d " .section .text .global _start _start: pushl $20 call .first_prime_numbers addl $4, %esp pushl $0 call exit .first_prime_numbers: #argument first n numbers movl 4(%esp), %ecx #get the first argument do_test: pushl %ecx #push function arguments call .prime addl $4, %esp #restore the stack #if not prime jump to the next number cmpl $0, %eax je no_not_prime #print the number pushl %eax #save eax pushl %ecx #first argument pushl $prime_number_str #text to print call printf addl $4, %esp popl %eax #restore eax no_not_prime: loop do_test ret .prime: #argument: number to check movl 4(%esp), %eax #get the first argument #divide the argument by 2 xorl %edx, %edx movl $2, %ecx pushl %eax #save the value of eax divl %ecx movl %eax, %ecx #init the counter register popl %eax #restore the value of eax movl $1, %ebx #assume the argument is prime test_prime: # if ecx == 1 then return exit the function cmpl $1, %ecx jle return_value pushl %eax #save the old value of eax #divide the value by the value of counter xorl %edx, %edx divl %ecx #if the reminder is 0 then the number is not prime cmpl $0, %edx popl %eax #restore the value of eax je not_prime subl $1, %ecx #decrease counter jmp test_prime #try next division not_prime: movl $0, %ebx return_value: movl %ebx, %eax ret </code></pre> http://stackoverflow.com/questions/1734243/in-c-how-do-i-print-filename-of-file-that-is-redirected-as-input-in-shell 4 In C how do I print filename of file that is redirected as input in shell Rohit 2009-11-14T13:35:03Z 2009-11-14T13:59:37Z <pre><code>$cc a.c $./a.out &lt; inpfilename </code></pre> <p>I want to print inpfilename on stdout. How do I do that ? Thanks for the help in advance...</p> http://stackoverflow.com/questions/1699763/using-printf-to-display-on-serial-port-of-an-arm-microcontroller 1 Using Printf to display on serial port of an ARM microcontroller Alex Xander 2009-11-09T08:36:32Z 2009-11-13T13:43:44Z <p>I would like to use printf to diplay text on a serial port of an ARM microcontroller. I am unable to do so. Any help is appreciated. </p> <p>My init_serial looks like this</p> <pre><code>void init_serial (void) { PINSEL0 = 0x00050000; /* Enable RXD1 TxD1 */ U1LCR = 0x00000083; /*8 bits, 1 Stop bit */ U1DLL = 0x000000C2; /*9600 Baud Rate @12MHz VPB Clock */ U1LCR = 0x00000003; /* DLAB=0*/ } </code></pre> <p>which is obviously wrong.</p> http://stackoverflow.com/questions/1719784/c-programming-forward-variable-argument-list 1 C Programming: Forward variable argument list. Joshua Cheek 2009-11-12T03:57:07Z 2009-11-12T16:11:21Z <p>Hi, I'm trying to write a function that accepts a variable number of parameters like printf, does some stuff, then passes the variable list to printf. I'm not sure how to do this, because it seems like it would have to push them onto the stack. </p> <p>Something approximately like this</p> <p><a href="http://pastie.org/694844" rel="nofollow">http://pastie.org/694844</a></p> <pre><code>#include &lt;stdio.h&gt; #include &lt;stdarg.h&gt; void forward_args( const char *format , ... ){ va_list arglist; printf( format, arglist ); } int main (int argc, char const *argv[]){ forward_args( "%s %s\n" , "hello" , "world" ); return 0; } </code></pre> <p>Any ideas?</p> http://stackoverflow.com/questions/1716296/why-does-printf-not-flush-after-the-call-unless-a-newline-is-in-the-format-string 3 Why does printf not flush after the call unless a newline is in the format string? (in C) Crazy Chenz 2009-11-11T16:22:39Z 2009-11-11T20:24:36Z <p>Why does printf not flush after the call unless a newline is in the format string? (in C)</p> <p>Is this POSIX behavior?</p> <p>How might I have printf immediately flush every time?</p> <p>Thanks, Chenz</p> http://stackoverflow.com/questions/1708444/java-literal-percent-sign-in-printf-statement 4 Java: Literal percent sign in printf statement Domenic 2009-11-10T14:41:16Z 2009-11-10T14:57:49Z <p>I'm trying to add an actual percent sign into a printf statement in Java and I'm getting the error:</p> <pre><code>lab1.java:166: illegal escape character System.out.printf("%s\t%s\t%1.2f\%\t%1.2f\%\n",ID,pattern,support,confidence); ^ lab1.java:166: illegal escape character System.out.printf("%s\t%s\t%1.2f\%\t%1.2f\%\n",ID,pattern,support,confidence); ^ 2 errors </code></pre> <p>I can't figure out how to put an actual percent sign into my printf? I thought using \% to escape it would work, but it isn't</p> <p>Any ideas? Thanks.</p> http://stackoverflow.com/questions/468262/how-will-you-print-a-character-without-library-functions-in-c 4 How will you print a character without library functions in C ? Manoj Doubts 2009-01-22T06:59:57Z 2009-11-09T15:02:18Z <p>If for example I should not use standard library functions like printf, putchar then how can I print a character to the screen easily. Is there any easy way of doing it. I dont know much about system calls and if I have to use them then how? <p>So can any one advice an easy way of printing a character without using library functions?? Thanks in advance..</p>