About 57 results
Open links in new tab
  1. Difference between fprintf, printf and sprintf? - Stack Overflow

    Jan 16, 2015 · Can anyone explain in simple English about the differences between printf, fprintf, and sprintf with examples? What stream is it in? I'm really confused between the three of these while …

  2. How to use fprintf for writing data to a file - Stack Overflow

    May 20, 2011 · I want to write data from a C program to a file, so that Excel can read the file to plot a graph of the data. But I'm not sure of the exact syntax to use for fprintf. I have stdlib.h declared in th...

  3. c - fprintf with string argument - Stack Overflow

    Jan 7, 2010 · In order to create a formatted file, I want to utilize fprintf. It must get char* parameters, but I have several string variables. How can I use fprintf?

  4. printf - How does fprintf work in C++? - Stack Overflow

    Oct 30, 2014 · fprintf(stdout, "test %d %d 255\n", 255, 255); it would be the same as the printf equivalent. The second argument to it is the format string. The format string contains format …

  5. matlab - Difference between disp and fprintf - Stack Overflow

    Nov 1, 2018 · In Matlab, it seems to me that disp and fprintf commands both are very similar in that they both show to display what you tell it to. What is the difference between these 2 commands?

  6. c - Quais as diferenças entre printf, fprintf, sprintf, snprintf ...

    Sep 4, 2016 · Pesquisando notei que existem varias variações do printf, mas não entendi quais as diferenças e qual usar em determinada circunstância. Gostaria de saber a finalidade de cada um …

  7. c - Which is preferable - printf or fprintf - Stack Overflow

    Nov 7, 2012 · To quote the standard (7.21.6.3 in n1570): The printf function is equivalent to fprintf with the argument stdout interposed before the arguments to printf. So printf is more convenient when …

  8. fprintf, error: format not a string literal and no format arguments ...

    Jun 23, 2013 · error: format not a string literal and no format arguments [-Werror=format-security but when I compiled that on other linux distributions (RedHat, Fedora, SUSE) that is compiled …

  9. write vs fprintf - why different and which is better?

    Feb 27, 2013 · fprintf (and fwrite and anything that takes a FILE * argument) is a library call, which buffers, or collects, the data inside your program before sending it. This allows it to send larger, more …

  10. When should I use perror("...") and fprintf(stderr, "...")?

    Aug 24, 2012 · 56 They do rather different things. You use perror() to print a message to stderr that corresponds to errno. You use fprintf() to print anything to stderr, or any other stream. perror() is a …