Recent Discussions in C/C++ Programmer's Mailing List


To join this group, send a blank email to c-prog-subscribe@yahoogroups.com or visit http://groups.yahoo.com/group/c-prog



  1. Re: Header file??
    ... Headers in <> are typically searched for in the default include search path. Headers in "" are searched for in default path AND any additional paths...
    - Fri, 21 Nov 2008 17:09:27 GMT
  2. Re: Header file??
    hello the header files included in "" are user defined..or we can say the customized ones..wheres in <> means they are prefined in the c++ library, and are...
    - Fri, 21 Nov 2008 16:54:23 GMT
  3. Re: Header file??
    ... See: http://tech.groups.yahoo.com/group/c-prog/files/html/headers.html...
    - Fri, 21 Nov 2008 16:22:11 GMT
  4. Header file??
    i'm new to learn C. i'm using Visual studio C++ to learn C. i found that sometimes header files are included in this way: #include "stdio.h" but sometimes in...
    - Fri, 21 Nov 2008 16:20:17 GMT
  5. Re: Header file
    The real question is what to put in "something.c" and what to put in the corresponding "something.h". Personally I regard the header file "something.h" as a ...
    - Fri, 21 Nov 2008 16:01:34 GMT
  6. Re: Header file
    This is very simply of creating your own header file well let me tell you one thing... Please i hope you know how to create functions yes this is the same way...
    - Fri, 21 Nov 2008 14:09:34 GMT
  7. Re: Header file
    ... But don't expect functions to magically appear or exist just because you write a prototype into a header file. You will have to write those functions too....
    - Fri, 21 Nov 2008 13:42:56 GMT
  8. Re: Text editor
    Hi Sudhakara, This site will teach most of what you are looking for. http://www.catch22.net/tuts/neatpad It's got a step by step introduction to text editors...
    - Fri, 21 Nov 2008 13:14:12 GMT
  9. Re: Text editor
    ... http://www.jedsoft.org/jed/ http://notepad-plus.sourceforge.net/...
    - Fri, 21 Nov 2008 11:30:12 GMT
  10. Re: Header file
    On Fri, Nov 21, 2008 at 10:37 AM, sudhakar bonthu ... Exactly the same way you create your c or cpp files, you create a new file in your text editor and save...
    - Fri, 21 Nov 2008 10:51:17 GMT
  11. Header file
    Hi everybody,                     I want to create my own header file in c/c++. How can i?                       ...
    - Fri, 21 Nov 2008 09:37:28 GMT
  12. Text editor
    Hi every one,                     I need to develop a text editor in c/c++. what are the concepts of c/c++ that i thorough to do this. Can...
    - Fri, 21 Nov 2008 09:35:50 GMT
  13. Re: need help
    Hi,       you can assign two dimension  array to pointer like this int array[10][10]; int (*ptr)[10] // ptr is pointer to an array of ten int(i,e ptr is...
    - Wed, 19 Nov 2008 12:22:44 GMT
  14. Re: need help
    I seldom use the old-fashioned C-type arrays or pointers to them, but vectors instead, a container STL class. #include <iostream> #include <iomanip> #include...
    - Tue, 18 Nov 2008 16:17:43 GMT
  15. Re: need help
    ... From: "David Hamill" <david@...> To: <c-prog@yahoogroups.com> Sent: Tuesday, November 18, 2008 8:53 AM Subject: Re: [c-prog] need help ... What...
    - Tue, 18 Nov 2008 14:08:24 GMT