How to creat a c project file?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Alenik1989
    New Member
    • Oct 2007
    • 64

    How to creat a c project file?

    Im just about to write a c programe using multiple files. such as (func.h tools.c and main.c). my question is how do i have to creat a project file?
    I am using Microsoft Visual C++ 6 to write and compile my codes......
  • weaknessforcats
    Recognized Expert Expert
    • Mar 2007
    • 9214

    #2
    Yes.

    Create a Win32 project.

    Then, select your Project Settings and select "empty project" and "console application.

    Then add the .c files to your project.

    The headers are included by the #include so they don't really need to be part of the project. It doesn't hurt if they are since only the .c files are compiled.

    Comment

    • Alenik1989
      New Member
      • Oct 2007
      • 64

      #3
      Thank you. I got it!!!!

      Comment

      Working...