About 15,800,000 results
Open links in new tab
  1. 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 …

  2. 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 …

  3. How can I print to standard error in C with 'printf'?

    Jun 22, 2023 · 1 You may know sprintf. It's basically the same thing with fprintf. The first argument is the destination (the file in the case of fprintf i.e. stderr), the second argument is the format …

  4. 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?

  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 …

  6. 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. …

  7. C: fwrite() vs (f)printf? - Stack Overflow

    but was there any specific reason the author chose to use fwrite () over fprintf or printf in this context ? Study the implementation of fwrite and fprintf inside GNU libc.

  8. 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 …

  9. How to display (print) vector in Matlab? - Stack Overflow

    I have a vector x = (1, 2, 3) and I want to display (print) it as Answer: (1, 2, 3). I have tried many approaches, including: disp ('Answer: ') strtrim (sprintf ('%f ', x)) But I still can't get it to

  10. format floating points in matlab using fprintf function

    Jul 12, 2014 · format floating points in matlab using fprintf function Asked 11 years, 6 months ago Modified 11 years, 6 months ago Viewed 3k times