Since 4/26/2012 9:59:28 PM, crisgoogle has written 0 articles and participated in 14 conversations. crisgoogle signature: crisgoogle
crisgoogle's replies:
Items(8) /1
smallest disk covering a set of points9825 (5/14/2004 12:16:23 AM) comp.programming Is there a fast algorithm for finding the smallest disk that covers a set of points in the plane? My idea has proved very inefficient: I found the centre of mass, shrunk a circle till I hit the outermost point... sb91(4)
Can array allocation cause memory fragmentation516 (9/14/2007 4:36:13 PM) comp.lang.c++ Hi, I recently worked on an open source project and tried to make on of the arrays they are using dynamically allocated to get rid of the max size. I used the realloc instead of the usual C++ new and delete ... KeldorKatarn(20)
What would be the right warning/error?2128 (6/6/2008 3:09:02 PM) comp.lang.c Consider this code static typedef struct { int boo; } FOO; This provokes with MSVC: ------------------------------ Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.762 for x64 Copyright (C) Micros... jacob4111(1334)
forward declaration of a struct typedef740 (1/9/2009 2:45:56 PM) comp.lang.c Hello, I'm working on a parser for ANSI C (http://code.google.com/p/ pycparser/), and it was reported that the parser chokes on the following code: typedef struct tagEntry tagEntry; struct tagEntry { char... eliben(221)
Getting source file from the object file3126 (3/6/2009 5:40:56 AM) comp.lang.c Dear Friend Can we get the source file from the object ? example : file a.c cc a.c Now I have a.out But I not have the a.c how could I get the source file using a.out thanks ... pavun.bks(25)
Buffer Overruns other C Gotchas -- "Coders at Work"4654 (11/3/2009 5:19:43 PM) comp.lang.c I thought of this question, of buffer overruns, after one of the people interviewed for the book "Coders at Work" said that C was great for systems programming by well trained programmers, but that C had leaked... caseyhHAMMER_TIME(219)
volatile Info72220 (8/4/2010 8:45:01 AM) comp.lang.c Hi guys,
In an interview I was asked the following question:
The function calculates the square of the number is given
int square(volatile int value)
{
return value*value;
}
His question was Wi... manumg007(11)