functions that take many arguments...... + extern - what about it?1633 (6/12/2006 8:52:26 PM) comp.lang.c Hi, Problem: ======== Some of my output functions are beginning to take pretty many arguments... I mean.... We're talking about 10-15 arguments :-) So I thought to myself, perhaps this is beginning to get ou... ISO
please help with mysterious error....3359 (6/1/2006 4:17:12 PM) comp.lang.c Hi, In continuation of the thread I made "perhaps a stack problem? Long calculations - strange error?", I think I now got a "stable" error, meaning that the error always seem to come here now (tried: visual ... ISO
bmatrix'es...420 (5/25/2006 10:27:44 PM) comp.text.tex Hi, I'm trying to make something like this: http://www.cs.utk.edu/~dongarra/etemplates/node373.html So I've put the following inside a classic-thesis-document... Is there anything wrong with it? - - - - - ... ISO
checking double for Inf or NaN - how?5460 (5/18/2006 3:27:16 PM) comp.lang.c Hi, I found the code below from http://www.blitzbasic.com/Community/posts.php?topic=55633 ------ ' Check if number is finite. Local u:Double = 2 ' also works for floats For Local n = 1 To 12 Print isfi... ISO
invalid conversion from void* to int**1184 (5/14/2006 11:04:53 AM) comp.lang.c++ Hi, I'm using this alloc_mem-function: - - - - - - - - - - - - - - - - - - - - - - - - void *alloc_mem (size_t num_elems, size_t elem_size, char *filename, int line, siz... ISO
invalid conversion from void* to int**5126 (5/13/2006 11:06:28 PM) comp.lang.c Hi, I'm using this alloc_mem-function (by Michael Mair): - - - - - - - - - - - - - - - - - - - - - - - - void *alloc_mem (size_t num_elems, size_t elem_size, char *filename, int line, ... ISO
using less<string>...1121 (5/13/2006 5:55:48 PM) comp.lang.c++ Hi, - - - - - - - - - - - - - - - #include #include #include using namespace std; int main() { string name; int pop; string states[] = { "Wyoming", "Colorado", "Nevada", "Montana",... ISO
newbie iterator question...630 (5/10/2006 11:34:02 PM) comp.lang.c++ Hi, I have this book "Objected-oriented programming in C++", 4.th edition by Robert Lafore... It says on the back of this book that he has written books about programming since 1982... Yeah, right... I did t... ISO
newbie question about eclipse perspective...1736 (5/10/2006 8:27:03 PM) comp.lang.java.programmer Hi, I just downloaded eclipse with the CDT (c/c++ extension) and now I can compile programs using makefiles. That's great... But when I debug I guess it calls the gdb-debugger and when it returns it keeps b... ISO
Really easy cygwin / gcc question1633 (5/30/2006 9:26:29 AM) comp.lang.c Hi All, Why when I complile and run the following: #include "stdio.h" main(void) { printf("test test test\n"); } do I get no output to the screen? If I run it in the ddd debugger I get the 'test test test'... michael5139(36)
Can we override [][] ?5215 (5/31/2006 12:39:28 AM) comp.lang.c++ I wanted to do an operator override for [][] but couldnt' figure out the syntax. I tried this (code that doesn't compile commented out with //: class CMyBitmap { public: CMyBitmap( int Rows, int Columns ... tazmaster(2359)
dynamic array of objects720 (6/1/2006 6:12:21 AM) comp.lang.c++ New to c++ and OOP. I need help I'm trying to code a sample library system using arrays of objects that will do the following: -Add a book to the library -Remove a book from the library -Search for a specific b... britontn(1)
please help with mysterious error....3359 (6/1/2006 4:17:12 PM) comp.lang.c Hi, In continuation of the thread I made "perhaps a stack problem? Long calculations - strange error?", I think I now got a "stable" error, meaning that the error always seem to come here now (tried: visual ... unoder.spam(554)
how do i read odd numbered lines from a file2455 (6/4/2006 11:11:10 AM) comp.lang.c hi there, can anyone tell me how to lines from a file which are odd numbered i.e. 1st,3rd,5th...lines. i tried incrementing file pointer by 2 (fp=fp+2) but it does'nt work Can someone give me the code please. ... rudranee(142)
What's next? Virtual wife?632 (6/6/2006 9:10:53 AM) comp.lang.c++ Everyone hi, Look at this: www.play-sex-game.co They have free demo. I really like this. What do you think will b the next? Virtual girls, kids, life ... sub1
How to initialize a pointer in c++,2223 (6/7/2006 6:27:09 AM) comp.lang.c++ How to initialize a pointer in c++, Mostly, I use null, for example, char * szName = null; However, if i compile it without including afxdisp.h , .net compiler tell me that the identifier is not declared. but... wangdongyu3d(41)