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
-
- 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
-
- 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
-
- Re: Header file??
- ... See: http://tech.groups.yahoo.com/group/c-prog/files/html/headers.html...
- - Fri, 21 Nov 2008 16:22:11 GMT
-
- 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- Re: Text editor
- ... http://www.jedsoft.org/jed/ http://notepad-plus.sourceforge.net/...
- - Fri, 21 Nov 2008 11:30:12 GMT
-
- 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 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