Main Menu

HOME

.Net
ASP
Assembly
C
C++
Delphi
HTML
Java
JavaScript Site
MySQL
PC interface
Powershell
Perl
PHP
VBScript
Visual Basic
XML

US Job listings




   Misc

   Amazon

   Links

    


Formatted file output using fprintf
 

 

Description

This example uses the fprintf function to write formatted file output . This example requires you to create a blank file called website.txt . In this case on your d: drive .

Code


#include <stdio.h>

int main()
{
FILE *fp;
int rating = 9;
if (fp = fopen("d:/website.txt", "w"))
{
fprintf(fp, "Website: Programmershelp\n");
fprintf(fp, "Topic: computer programming\n");
fprintf(fp, "Rating out of 10 : %d \n",rating );
fclose(fp);
}
else
printf("Error opening d:/website.txt\n");

return 0;
}

Information

tested using LCC Win 32

 

 
 

 

Download

fprintf.txt


 




   Sponsors
 

   Software
500 Java Tips E-book
PHP editor
PERL editor
Beginning Java
Beginning Visual Basic
Learn VB.net
Learn VB 6
VB and databases
ASP image library
C++ builder programming
C++ fundamentals

   Source Code
random white dots(Darkbasic)
word count example in php(php)
Wired news(PHP)
move a file to the recycle bin(VB)
Display memory size and location(Powershell)
expanding text(Javascript)
remote host information(C Sharp)
change system colors(VB)

    




Copyright © 2003 by programmershelp.co.uk