Thread: how do you open notepad file in a c program?

  1. #1
    Registered User
    Join Date
    Mar 2011
    Posts
    7

    how do you open notepad file in a c program?

    so i need to make a jeopardy program.
    thing is the questions should be in a notepad (.txt file)

    i heard there is a function used to do so.
    anyone care to help me how to do this or link me to a good tutorial about this stuff

    thanks in advance

  2. #2
    C++ Witch laserlight's Avatar
    Join Date
    Oct 2003
    Location
    Singapore
    Posts
    28,413
    Are you trying to read from/write to a file, or do you really need to involve a text editor like Notepad?
    Quote Originally Posted by Bjarne Stroustrup (2000-10-14)
    I get maybe two dozen requests for help with some sort of programming or design problem every day. Most have more sense than to send me hundreds of lines of code. If they do, I ask them to find the smallest example that exhibits the problem and send me that. Mostly, they then find the error themselves. "Finding the smallest program that demonstrates the error" is a powerful debugging tool.
    Look up a C++ Reference and learn How To Ask Questions The Smart Way

  3. #3
    Registered User
    Join Date
    Mar 2011
    Posts
    7
    Quote Originally Posted by laserlight View Post
    Are you trying to read from/write to a file, or do you really need to involve a text editor like Notepad?
    read from a file i believe.

    the questions for my jeopardy program are in the notepad.

    i cant find much in google about this...

    though i think its this function fsopen() or fopen()
    though im not really sure

  4. #4
    THANK YOU KINDLY SIR Phenax's Avatar
    Join Date
    Mar 2011
    Posts
    74
    stdio.h - Wikipedia, the free encyclopedia

    You're probably wanting to use functions like:
    fopen, fclose, fgets, etc.
    Quote Originally Posted by Plato
    Never discourage anyone...who continually makes progress, no matter how slow.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Replies: 1
    Last Post: 05-27-2009, 12:46 PM
  2. Newbie homework help
    By fossage in forum C Programming
    Replies: 3
    Last Post: 04-30-2009, 04:27 PM
  3. Post...
    By maxorator in forum C++ Programming
    Replies: 12
    Last Post: 10-11-2005, 08:39 AM
  4. Dikumud
    By maxorator in forum C++ Programming
    Replies: 1
    Last Post: 10-01-2005, 06:39 AM
  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