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
Bubblesort routine(PHP)
Select Case example(ASP)
strip html tags from some text(php)
free disk space, wmi version(C Sharp)
read a character using cin(C++)
GIF creation with PHP(php)
background image(HTML)
Open and display a text file(ASP)

    




Copyright © 2003 by programmershelp.co.uk