Since 4/25/2012 6:43:05 PM, boa11 has written 2 articles and participated in 123 conversations. boa11 signature: boa11
boa11's articles:
Items(2) /1
building libraries, your thoughts needed129 (9/10/2006 5:28:56 AM) comp.unix.programmer Let's say we have foo.c and foo.h, implementing some functionality, which we build and install as library libfoo.a and header file foo.h. So far, so good. Libfoo.a may be good, but it isn't perfect, so we may ... ISO
double to int conversion yields strange results3027 (2/11/2005 11:01:49 AM) comp.lang.c Below is a program which converts a double to an integer in two different ways, giving me two different values for the int. The basic expression is 1.0 / (1.0 * 365.0) which should be 365, but one variable b... ISO
Linux C/C++1229 (5/17/2007 4:50:50 AM) comp.lang.c Can anyone suggest me a good book to learn C/C++ programming under Linux platform? ... gs.magesh(11)
How to tell a file is been close.1934 (5/17/2007 10:58:34 AM) comp.lang.c FILE *fp; fp = fopen( ... ) fclose( fp ). How do I know if fp has been fclose. I know can set fp to NULL after fclose it, then check fp's value to solve the problem. But, if there have other methods? ... xueyunlong(7)
Lex/Yacc and multiple input files242 (5/18/2007 3:49:35 PM) comp.lang.c Hi everybody! I am using lex and yacc to write a vhdl to systemc converter. Lex simply reads the input file and yacc implements grammar and translation. I'd like to be able to make yacc able to command lex t... max.giacometti(13)
Lex/Yacc and multiple input files262 (5/21/2007 7:26:11 AM) comp.unix.programmer Hi everybody! I am using lex and yacc to write a vhdl to systemc converter. Lex simply reads the input file and yacc implements grammar and translation. I'd like to be able to make yacc able to command lex t... max.giacometti(13)
Reallocate an array (pointers)1136 (5/28/2007 8:32:34 PM) comp.lang.c Hi, I have no idea why my reallocation function (myadd) is breaking up my array. I'm trying to solve it and it took me few hours already. Maybe you can look at my code and explain me what is wrong. (I still h... noreply23(191)
Looking for a C system call to copy files1323 (5/28/2007 11:34:18 PM) comp.lang.c Hi, Is there a UNIX C system command that will let me copy a file? I am looking for something similar to "cp" that can be called within a C program. I know of the "link" system call but this command will set a... avner-moshkovitz(20)
Finding the current position in a file442 (5/30/2007 5:32:25 PM) comp.unix.programmer Hello Group, How do you find the current position in a file? I know about lseek to set the position, but I have as of yet to find a function that will return the current file position. Any ideas other than ... spamthis(184)
help me out2028 (6/5/2007 9:39:03 AM) comp.lang.c Hi all, You are given have a datatype, say X in C. The requirement is to get the size of the datatype, without declaring a variable or a pointer variable of that type, And, of course without using sizeof op... singhujjwal(7)