Thread: Function and header files

  1. #1
    Registered User
    Join Date
    Feb 2002
    Posts
    40

    Question Function and header files

    I was wondering if there was a little app someone ever made that has all function in common header files.

    Example: lets say that app I search for the function cout then it will tell me that cout depends on iostream.h and what is the syntax for it.

    You know what i mean? If someone made that would be great and I would love to have a copy. Maybe someone is gonna laugh at me and tell me its already in bloodshed or visual c++ right under my nose but please remember me is nooooobie hehe.
    cout << "Gotta love cpp\n";
    cout << "UIN: 825265\n";
    cout << "[email protected]\n;
    /* Hope I can know enough one
    day to make my very own notepad
    */

  2. #2
    It's full of stars adrianxw's Avatar
    Join Date
    Aug 2001
    Posts
    4,829
    The header file required for all functions is stated in the help or at MSDN eg...

    >>>
    Code:
    printf, wprintf
    Print formatted output to the standard output stream.
    
    int printf( const char *format [, argument]... );
    
    int wprintf( const wchar_t *format [, argument]... );
    
    Routine Required Header Compatibility 
    printf <stdio.h>  ANSI, Win 95, Win NT 
    wprintf <stdio.h> or <wchar.h> ANSI, Win 95, Win NT
    <<<
    Wave upon wave of demented avengers march cheerfully out of obscurity unto the dream.

  3. #3
    Registered User
    Join Date
    Feb 2002
    Posts
    40
    told you I suck. Then hehe is there a list of all functions of the 50 some c header files? If im not mistaken there is like 50 *.h files that are like the standard of c++. Is there a list of all the function they provide and how to use em?

    Hehe please dont laugh. Told you guys when i joined this board to be patient with me hehe
    cout << "Gotta love cpp\n";
    cout << "UIN: 825265\n";
    cout << "[email protected]\n;
    /* Hope I can know enough one
    day to make my very own notepad
    */

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. We Got _DEBUG Errors
    By Tonto in forum Windows Programming
    Replies: 5
    Last Post: 12-22-2006, 05:45 PM
  2. Dikumud
    By maxorator in forum C++ Programming
    Replies: 1
    Last Post: 10-01-2005, 06:39 AM
  3. Problem with Visual C++ Object-Oriented Programming Book.
    By GameGenie in forum C++ Programming
    Replies: 9
    Last Post: 08-29-2005, 11:21 PM
  4. Request for comments
    By Prelude in forum A Brief History of Cprogramming.com
    Replies: 15
    Last Post: 01-02-2004, 10:33 AM
  5. Contest Results - May 27, 2002
    By ygfperson in forum A Brief History of Cprogramming.com
    Replies: 18
    Last Post: 06-18-2002, 01:27 PM