Static String Concatenation421 (1/23/2006 7:57:44 PM) comp.lang.c Hi, The following is the logging mechanism used in the code i am maintaining. M_UM03_LOG_INFO ((M_UM03_INFO, "G_ul_DataValue1 = [%d], G_ul_DataValue2 = [%d], G_ul_DataValue3 = [%d], G_ul_DataValue4 = [%d], G... velusamypv(1)
union arrangement1622 (1/24/2006 6:12:04 PM) comp.lang.c does anyone know of a platform/compiler which will place union elements to not overlap? as in union u { int a; long b; size_t c; }; in my limited experience, writing to any of (a, b, or c) will affe... tu102(102)
problem with code1830 (1/24/2006 6:25:25 PM) comp.lang.c hi any hints would be great! #include #define MySize 8 void FindPosition(int array[]); { int array1[MySize] = {0,0,0,0,0,1,0,1}; FindPosition(array1) void FindPosition(int array[]) { int counter; for(counte... mrvendetta11(5)
VERY basic linux system8634 (1/25/2006 4:38:48 PM) comp.os.linux.misc Hey folks, Id like to create a linux-based OS, but change few things...you guys tell me how possible this is: #1 - I want to get rid of the filesystem heirarchy. Id like to modify it to use a volume system, si... scott.hutter(23)
16x16Matrix2730 (1/26/2006 9:58:35 AM) comp.lang.c Hello there, i got a list of 16 "two-character" (AU,AG,UC...) elements, and now i want to create a 16x16-Matrix with the elements of this list for the columns and rows. So i need to know: How can i create such... GrErlenkamp(6)
A new kind of printer spam?625 (2/1/2006 9:04:11 PM) comp.os.linux.hardware My Lexmark laser finally died and since Lexmark is an abuser of the DMCA act, I decided to end my long relationship with them. So I looked at the Linux printer compatibility website and found a recommended pri... marshxxxx(9)
TCP IP programming under DOS with C2038 (2/3/2006 8:02:42 PM) comp.lang.c Hi Y'All... I really need your help!! I've used this groups to learn and get me out of troubles but this is my first time writing a subject. My problem is that I need to make a C program that run in DOS and ... hrestrada(14)
Newbie: starting programs528 (2/6/2006 6:51:36 PM) comp.os.linux.misc i want to start up a process and dont want it to shut down when i logoff.... i am logged in as root and i do ../process_name & even tried /home/user//process_name & any suggestions? thanks ... shirazk(27)
Length of a string?1327 (2/6/2006 8:56:46 PM) comp.lang.c I have this function: int test(void *blop) { char *sp; sp = blop; int i; for (i=0; i < LENGTH.sp; i++) { printf("%c\n", sp[i]); } return 0; } But I can't seem to find any functions... sdef(29)