Thread: HTML file

  1. #1
    Registered User
    Join Date
    Feb 2005
    Posts
    5

    HTML file

    Hi to all,

    Please suggest me is there any option to open the HTML files through C language becoz there is only two,one os text another one is binary .Please suggest regarding this.
    Thanking you.
    Munisamy

  2. #2
    Registered User
    Join Date
    Sep 2004
    Location
    California
    Posts
    3,268
    You need to explain your problem a bit more I think. I mean you can open a HTML file like any other...
    Code:
    FILE *f = fopen("Something.html","r");

  3. #3
    Registered User
    Join Date
    Mar 2005
    Posts
    9
    Bithub is correct, because.... HTML files are plain text files. Generally, you can determine whether a file is a plain text file IF the file, when opened as plain text, appears sane and does not contain any crazzzzzy symbols.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Formatting the contents of a text file
    By dagorsul in forum C++ Programming
    Replies: 2
    Last Post: 04-29-2008, 12:36 PM
  2. Basic text file encoder
    By Abda92 in forum C Programming
    Replies: 15
    Last Post: 05-22-2007, 01:19 PM
  3. C++ std routines
    By siavoshkc in forum C++ Programming
    Replies: 33
    Last Post: 07-28-2006, 12:13 AM
  4. System
    By drdroid in forum C++ Programming
    Replies: 3
    Last Post: 06-28-2002, 10:12 PM
  5. Need a suggestion on a school project..
    By Screwz Luse in forum C Programming
    Replies: 5
    Last Post: 11-27-2001, 02:58 AM